fix spacing

This commit is contained in:
Chris Cromer 2020-06-10 11:35:53 -04:00
parent 88714e3a1d
commit 29f78a97dd
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
1 changed files with 108 additions and 109 deletions

View File

@ -32,124 +32,123 @@
<div id="input_prompt" class="input_prompt"> <div id="input_prompt" class="input_prompt">
<span class="input_prompt_vertical"> <span class="input_prompt_vertical">
<label for="rda">{{strings.input_value}}</label><input autocomplete="off" type="text" name="rda" id="rda"/> <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" /> <input ng-click="rda_value_received();" type="button" value="Ingresar" />
</span> </span>
</div> </div>
<div id="help_window" class="help_window" ng-bind-html="strings.help_text"></div> <div id="help_window" class="help_window" ng-bind-html="strings.help_text"></div>
<table class="title_table"> <table class="title_table">
<tr> <tr>
<td class="blank_title_cell"><img src="ubblogo.png" /></td> <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" <td class="project_name">
id="project_name" <label for="project_name">{{strings.project_name}} </label><input type="text" id="project_name" name="project_name" value=""/>
name="project_name" </td>
value=""/></td> <td class="options">
<td class="options"> <input ng-click="show_help();" type="button" value="{{strings.help}}" />
<input ng-click="show_help();" type="button" value="{{strings.help}}" /> <label>
<label> <select ng-change="change_language();" ng-model="language">
<select ng-change="change_language();" ng-model="language"> <option value="0">{{strings.spanish}}</option>
<option value="0">{{strings.spanish}}</option> <option value="1">{{strings.english}}</option>
<option value="1">{{strings.english}}</option> </select>
</select> </label>
</label> </td>
</td> </tr>
</tr>
</table> </table>
<br /> <br />
<table class="main_table"> <table class="main_table">
<tr> <tr>
<td class="main_td"> <td class="main_td">
{{strings.code}}<hr /> {{strings.code}}<hr />
<div class="scrollcode"> <div class="scrollcode">
<table align="center" class="table_background"> <table align="center" class="table_background">
<tr ng-repeat="(key, line) in code_lines"> <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="line1_{{key}}" ng-click="select_line(key, false);" class="table_cell line_number_td" >{{line.line}}</td>
<td id="line2_{{key}}" class="table_cell"> <td id="line2_{{key}}" class="table_cell">
<label> <label>
<select ng-model="line.command" ng-options="command.name for command in commands"></select> <select ng-model="line.command" ng-options="command.name for command in commands"></select>
</label> </label>
</td> </td>
<td id="line3_{{key}}" class="table_cell"> <td id="line3_{{key}}" class="table_cell">
<label> <label>
<input type="text" ng-model="line.value"/> <input type="text" ng-model="line.value"/>
</label> </label>
</td> </td>
</tr> </tr>
</table> </table>
</div> </div>
<hr /> <hr />
<input ng-click="add_line();" id="add_line" type="button" value="{{strings.add_line}}" /> <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="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="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="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}}" /> <input ng-click="export_code();" id="export_code" type="button" value="{{strings.export_code}}" />
{{strings.import_code}} {{strings.import_code}}
<input import-file type="file" id="file" /> <input import-file type="file" id="file" />
</td> </td>
<td class="main_td"> <td class="main_td">
{{strings.result}} {{strings.result}}
<hr /> <hr />
<div class="scrollresult"> <div class="scrollresult">
<table align="center"> <table align="center">
<tr> <tr>
<td class="result_table"> <td class="result_table">
<table align="center" class="table_background"> <table align="center" class="table_background">
<tr> <tr>
<td class="title_td">Ln</td> <td class="title_td">Ln</td>
<td class="title_td">Ac</td> <td class="title_td">Ac</td>
<td class="title_td">80</td> <td class="title_td">80</td>
<td class="title_td">81</td> <td class="title_td">81</td>
<td class="title_td">82</td> <td class="title_td">82</td>
<td class="title_td">83</td> <td class="title_td">83</td>
<td class="title_td">84</td> <td class="title_td">84</td>
<td class="title_td">85</td> <td class="title_td">85</td>
<td class="title_td">Wrt</td> <td class="title_td">Wrt</td>
</tr> </tr>
<tr ng-repeat="result in results"> <tr ng-repeat="result in results">
<td class="table_cell">{{result.line}}</td> <td class="table_cell">{{result.line}}</td>
<td class="table_cell">{{result.ac}}</td> <td class="table_cell">{{result.ac}}</td>
<td class="table_cell">{{result.first}}</td> <td class="table_cell">{{result.first}}</td>
<td class="table_cell">{{result.second}}</td> <td class="table_cell">{{result.second}}</td>
<td class="table_cell">{{result.third}}</td> <td class="table_cell">{{result.third}}</td>
<td class="table_cell">{{result.fourth}}</td> <td class="table_cell">{{result.fourth}}</td>
<td class="table_cell">{{result.fifth}}</td> <td class="table_cell">{{result.fifth}}</td>
<td class="table_cell">{{result.sixth}}</td> <td class="table_cell">{{result.sixth}}</td>
<td class="table_cell">{{result.wrt}}</td> <td class="table_cell">{{result.wrt}}</td>
</tr> </tr>
</table> </table>
</td> </td>
<td class="result_table"> <td class="result_table">
<table align="center" class="table_background"> <table align="center" class="table_background">
<tr> <tr>
<td class="title_td">{{strings.screen}}</td> <td class="title_td">{{strings.screen}}</td>
</tr> </tr>
<tr ng-repeat="line in screen"> <tr ng-repeat="line in screen">
<td class="table_cell">{{line.result}}</td> <td class="table_cell">{{line.result}}</td>
</tr> </tr>
</table> </table>
</td> </td>
</tr> </tr>
</table> </table>
</div> </div>
<hr /> <hr />
<input ng-click="execute_code();" id="execute_code" type="button" value="{{strings.execute_code}}" /> <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="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" /> <input ng-click="stop_code();" id="stop_code" type="button" value="{{strings.stop_code}}" disabled="disabled" />
<label> <label>
{{strings.interval}} {{strings.interval}}
<select ng-change="change_speed();" ng-model="speed"> <select ng-change="change_speed();" ng-model="speed">
<option value="0">0</option> <option value="0">0</option>
<option value="1">1</option> <option value="1">1</option>
<option value="2">2</option> <option value="2">2</option>
<option value="3">3</option> <option value="3">3</option>
<option value="4">4</option> <option value="4">4</option>
<option value="5">5</option> <option value="5">5</option>
</select> </select>
</label> </label>
</td> </td>
</tr> </tr>
</table> </table>
<div class="credits"> <div class="credits">
<b>JVON Web 1.1.2</b><br/> <b>JVON Web 1.1.2</b><br/>