Compare commits

...

3 Commits

Author SHA1 Message Date
Chris Cromer c4ce87cbc2
fix deprecated align attributes 2020-06-10 12:17:30 -04:00
Chris Cromer 29f78a97dd
fix spacing 2020-06-10 11:35:53 -04:00
Chris Cromer 88714e3a1d
fix square root of 0 2020-06-10 11:26:17 -04:00
2 changed files with 112 additions and 113 deletions

View File

@ -32,131 +32,130 @@
<div id="input_prompt" class="input_prompt">
<span class="input_prompt_vertical">
<label for="rda">{{strings.input_value}}</label><input autocomplete="off" type="text" name="rda" id="rda"/>
<input ng-click="rda_value_received();" type="button" value="Ingresar" />
<label for="rda">{{strings.input_value}}</label><input autocomplete="off" type="text" name="rda" id="rda"/>
<input ng-click="rda_value_received();" type="button" value="Ingresar" />
</span>
</div>
<div id="help_window" class="help_window" ng-bind-html="strings.help_text"></div>
<table class="title_table">
<tr>
<td class="blank_title_cell"><img src="ubblogo.png" /></td>
<td class="project_name"><label for="project_name">{{strings.project_name}} </label><input type="text"
id="project_name"
name="project_name"
value=""/></td>
<td class="options">
<input ng-click="show_help();" type="button" value="{{strings.help}}" />
<label>
<select ng-change="change_language();" ng-model="language">
<option value="0">{{strings.spanish}}</option>
<option value="1">{{strings.english}}</option>
</select>
</label>
</td>
</tr>
<tr>
<td class="blank_title_cell"><img src="ubblogo.png" /></td>
<td class="project_name">
<label for="project_name">{{strings.project_name}} </label><input type="text" id="project_name" name="project_name" value=""/>
</td>
<td class="options">
<input ng-click="show_help();" type="button" value="{{strings.help}}" />
<label>
<select ng-change="change_language();" ng-model="language">
<option value="0">{{strings.spanish}}</option>
<option value="1">{{strings.english}}</option>
</select>
</label>
</td>
</tr>
</table>
<br />
<table class="main_table">
<tr>
<td class="main_td">
{{strings.code}}<hr />
<div class="scrollcode">
<table align="center" class="table_background">
<tr ng-repeat="(key, line) in code_lines">
<td id="line1_{{key}}" ng-click="select_line(key, false);" class="table_cell line_number_td" >{{line.line}}</td>
<td id="line2_{{key}}" class="table_cell">
<label>
<select ng-model="line.command" ng-options="command.name for command in commands"></select>
</label>
</td>
<td id="line3_{{key}}" class="table_cell">
<label>
<input type="text" ng-model="line.value"/>
</label>
</td>
</tr>
</table>
</div>
<hr />
<input ng-click="add_line();" id="add_line" type="button" value="{{strings.add_line}}" />
<input ng-click="insert_line();" id="insert_line" type="button" value="{{strings.insert_line}}" />
<input ng-click="delete_line();" id="delete_line" type="button" value="{{strings.delete_line}}" />
<input ng-click="clear_code();" id="clear_code" type="button" value="{{strings.clear_code}}" />
<input ng-click="export_code();" id="export_code" type="button" value="{{strings.export_code}}" />
{{strings.import_code}}
<input import-file type="file" id="file" />
</td>
<td class="main_td">
{{strings.result}}
<hr />
<div class="scrollresult">
<table align="center">
<tr>
<td class="result_table">
<table align="center" class="table_background">
<tr>
<td class="title_td">Ln</td>
<td class="title_td">Ac</td>
<td class="title_td">80</td>
<td class="title_td">81</td>
<td class="title_td">82</td>
<td class="title_td">83</td>
<td class="title_td">84</td>
<td class="title_td">85</td>
<td class="title_td">Wrt</td>
</tr>
<tr ng-repeat="result in results">
<td class="table_cell">{{result.line}}</td>
<td class="table_cell">{{result.ac}}</td>
<td class="table_cell">{{result.first}}</td>
<td class="table_cell">{{result.second}}</td>
<td class="table_cell">{{result.third}}</td>
<td class="table_cell">{{result.fourth}}</td>
<td class="table_cell">{{result.fifth}}</td>
<td class="table_cell">{{result.sixth}}</td>
<td class="table_cell">{{result.wrt}}</td>
</tr>
</table>
</td>
<td class="result_table">
<table align="center" class="table_background">
<tr>
<td class="title_td">{{strings.screen}}</td>
</tr>
<tr ng-repeat="line in screen">
<td class="table_cell">{{line.result}}</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<hr />
<input ng-click="execute_code();" id="execute_code" type="button" value="{{strings.execute_code}}" />
<input ng-click="pause_code();" id="pause_code" type="button" value="{{strings.pause_code}}" disabled="disabled" />
<input ng-click="stop_code();" id="stop_code" type="button" value="{{strings.stop_code}}" disabled="disabled" />
<label>
{{strings.interval}}
<select ng-change="change_speed();" ng-model="speed">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</label>
</td>
</tr>
<tr>
<td class="main_td">
{{strings.code}}<hr />
<div class="scrollcode">
<table style="margin: 0 auto;" class="table_background">
<tr ng-repeat="(key, line) in code_lines">
<td id="line1_{{key}}" ng-click="select_line(key, false);" class="table_cell line_number_td" >{{line.line}}</td>
<td id="line2_{{key}}" class="table_cell">
<label>
<select ng-model="line.command" ng-options="command.name for command in commands"></select>
</label>
</td>
<td id="line3_{{key}}" class="table_cell">
<label>
<input type="text" ng-model="line.value"/>
</label>
</td>
</tr>
</table>
</div>
<hr />
<input ng-click="add_line();" id="add_line" type="button" value="{{strings.add_line}}" />
<input ng-click="insert_line();" id="insert_line" type="button" value="{{strings.insert_line}}" />
<input ng-click="delete_line();" id="delete_line" type="button" value="{{strings.delete_line}}" />
<input ng-click="clear_code();" id="clear_code" type="button" value="{{strings.clear_code}}" />
<input ng-click="export_code();" id="export_code" type="button" value="{{strings.export_code}}" />
{{strings.import_code}}
<input import-file type="file" id="file" />
</td>
<td class="main_td">
{{strings.result}}
<hr />
<div class="scrollresult">
<table style="margin: 0 auto;">
<tr>
<td class="result_table">
<table style="margin: 0 auto;" class="table_background">
<tr>
<td class="title_td">Ln</td>
<td class="title_td">Ac</td>
<td class="title_td">80</td>
<td class="title_td">81</td>
<td class="title_td">82</td>
<td class="title_td">83</td>
<td class="title_td">84</td>
<td class="title_td">85</td>
<td class="title_td">Wrt</td>
</tr>
<tr ng-repeat="result in results">
<td class="table_cell">{{result.line}}</td>
<td class="table_cell">{{result.ac}}</td>
<td class="table_cell">{{result.first}}</td>
<td class="table_cell">{{result.second}}</td>
<td class="table_cell">{{result.third}}</td>
<td class="table_cell">{{result.fourth}}</td>
<td class="table_cell">{{result.fifth}}</td>
<td class="table_cell">{{result.sixth}}</td>
<td class="table_cell">{{result.wrt}}</td>
</tr>
</table>
</td>
<td class="result_table">
<table style="margin: 0 auto;" class="table_background">
<tr>
<td class="title_td">{{strings.screen}}</td>
</tr>
<tr ng-repeat="line in screen">
<td class="table_cell">{{line.result}}</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<hr />
<input ng-click="execute_code();" id="execute_code" type="button" value="{{strings.execute_code}}" />
<input ng-click="pause_code();" id="pause_code" type="button" value="{{strings.pause_code}}" disabled="disabled" />
<input ng-click="stop_code();" id="stop_code" type="button" value="{{strings.stop_code}}" disabled="disabled" />
<label>
{{strings.interval}}
<select ng-change="change_speed();" ng-model="speed">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</label>
</td>
</tr>
</table>
<div class="credits">
<b>JVON Web</b><br/>
<b>JVON Web 1.1.2</b><br/>
{{strings.credits_description}}&nbsp;<b>{{strings.credits_john}}</b><br/>
{{strings.credits_cromer}}<br/>
Ingeniería Civil en Informática, Universidad del Bío Bío, 2015<br/>
<a target="_blank" href="jvon-1.1.1.apk">Version android</a>
Ingeniería Civil en Informática, Universidad del Bío Bío, 2015-2020<br/>
<!--<a target="_blank" href="jvon-1.1.1.apk">Version android</a>-->
</div>
</body>
</html>

View File

@ -678,7 +678,7 @@ document.addEventListener('DOMContentLoaded', function () {
var syntax = $scope.check_syntax(value);
var sqr;
if (syntax.type == "blank") {
if ($scope.ac == "") {
if (typeof $scope.ac != 'number') {
alert($scope.strings.error_ac);
$scope.stop_code();
}