Browse Source

Remove trailing whitespace

copy 8 years ago
parent
commit
9357484862
4 changed files with 28 additions and 28 deletions
  1. 15 15
      debug.html
  2. 1 1
      examples/lang2.html
  3. 1 1
      examples/lua.html
  4. 11 11
      index.html

+ 15 - 15
debug.html

@@ -11,15 +11,15 @@
     <div id="boot_options">
         <h4>Debugger</h4>
         <!-- <input type="button" value="Arch Linux" id="start_archlinux"> -->
-        <input type="button" value="KolibriOS" id="start_kolibrios"> 
-        <input type="button" value="Linux 2.6" id="start_linux26"> 
-        <input type="button" value="Linux 3.18" id="start_linux3"> 
-        <input type="button" value="Windows 1.01" id="start_windows1"> 
-        <input type="button" value="FreeDOS" id="start_freedos"> 
-        <input type="button" value="OpenBSD" id="start_openbsd"> 
-        <input type="button" value="Solar OS" id="start_solos"> 
-        <input type="button" value="Bootchess" id="start_bootchess"> 
-        <input type="button" value="Test" id="start_test"> 
+        <input type="button" value="KolibriOS" id="start_kolibrios">
+        <input type="button" value="Linux 2.6" id="start_linux26">
+        <input type="button" value="Linux 3.18" id="start_linux3">
+        <input type="button" value="Windows 1.01" id="start_windows1">
+        <input type="button" value="FreeDOS" id="start_freedos">
+        <input type="button" value="OpenBSD" id="start_openbsd">
+        <input type="button" value="Solar OS" id="start_solos">
+        <input type="button" value="Bootchess" id="start_bootchess">
+        <input type="button" value="Test" id="start_test">
         <br>
 
         <hr>
@@ -31,7 +31,7 @@
         <table>
             <tr>
                 <td width="250">CD image</td>
-                <td> 
+                <td>
                     <!--
                     <select>
                         <option>None</option>
@@ -59,7 +59,7 @@
             <tr>
                 <td>Memory size</td>
                 <td>
-                    <input id="memory_size" type="number" value="64" min="16" max="2048" step="16"> MB<br>
+                    <input id="memory_size" type="number" value="128" min="16" max="2048" step="16"> MB<br>
                 </td>
             </tr>
 
@@ -83,7 +83,7 @@
 
             <tr>
                 <td>Boot order</td>
-                <td> 
+                <td>
                     <select id="boot_order">
                         <option value="213">CD / Floppy / Hard Disk</option>
                         <option value="123">CD / Hard Disk / Floppy</option>
@@ -140,18 +140,18 @@
         <input type="button" value="Take screenshot (only graphic modes)" id="take_screenshot">
 
         <label>
-            Scale: 
+            Scale:
             <input type="number" min="0.25" step="0.25" value="1.0" id="scale" style="width: 50px">
         </label>
 
         <br>
         <label id="change_fda" style="display: none">
-            Change floppy: 
+            Change floppy:
             <input type="file">
         </label>
 
         <label id="change_cdrom" style="display: none">
-            Change CD: 
+            Change CD:
             <input type="file">
         </label>
 

+ 1 - 1
examples/lang2.html

@@ -75,7 +75,7 @@ window.onload = function()
     {
         emulator.read_file("/root/out.txt", function(error, data)
         {
-            if(error || !data) 
+            if(error || !data)
             {
                 return;
             }

+ 1 - 1
examples/lua.html

@@ -84,7 +84,7 @@ window.onload = function()
 
 // https://gist.github.com/creationix/2502704
 // Implement bash string escaping.
-function bashEscape(arg) 
+function bashEscape(arg)
 {
     return "'" + arg.replace(/'+/g, function (val) {
         return "'" + val.replace(/'/g, "\\'") + "'";

+ 11 - 11
index.html

@@ -35,7 +35,7 @@
         <table>
             <tr>
                 <td width="250">CD image</td>
-                <td> 
+                <td>
                     <input type="file" id="cd_image">
                 </td>
             </tr>
@@ -74,7 +74,7 @@
 
             <tr>
                 <td>Boot order</td>
-                <td> 
+                <td>
                     <select id="boot_order">
                         <option value="213">CD / Floppy / Hard Disk</option>
                         <option value="123">CD / Hard Disk / Floppy</option>
@@ -109,18 +109,18 @@
         <input type="button" value="Take screenshot (only graphic modes)" id="take_screenshot">
 
         <label>
-            Scale: 
+            Scale:
             <input type="number" min="0.25" step="0.25" value="1.0" id="scale" style="width: 50px">
         </label>
 
         <br>
         <label id="change_fda" style="display: none">
-            Change floppy: 
+            Change floppy:
             <input type="file">
         </label>
 
         <label id="change_cdrom" style="display: none">
-            Change CD: 
+            Change CD:
             <input type="file">
         </label>
 
@@ -197,7 +197,7 @@ In Linux it can be accessed with `cat /dev/ttyS0`
 
 <div id="news">
     <hr>
-    <h4>News</h4> 
+    <h4>News</h4>
     <ul>
         <li>Jan 10, 2014 &mdash; Updated interface
         <li>Nov 05, 2013 &mdash; Source Code now available: <a href="https://github.com/copy/v86">Github</a>.
@@ -207,14 +207,14 @@ In Linux it can be accessed with `cat /dev/ttyS0`
 <br style="clear:both">
 
 <hr>
-<a href="debug.html">Enable debug</a> 
+<a href="debug.html">Enable debug</a>
 &mdash;
-<a href="https://github.com/copy/v86/blob/master/Readme.md">Readme</a> 
+<a href="https://github.com/copy/v86/blob/master/Readme.md">Readme</a>
 &mdash;
-<a href="https://github.com/copy/v86">Project on Github</a> 
+<a href="https://github.com/copy/v86">Project on Github</a>
 &mdash;
-<a href="https://github.com/copy/v86#compatibility">Compatibility</a> 
+<a href="https://github.com/copy/v86#compatibility">Compatibility</a>
 &mdash;
-<a href="./screenshots/">Screenshots</a> 
+<a href="./screenshots/">Screenshots</a>