Commit 059724d2 authored by Joel Martin's avatar Joel Martin

demo1.html: IE9 unhappy with function named 'start'

Change function to "startit". This seems to get the demo page to work
under IE 9 (slowly though).
parent d942b200
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<br><br> <br><br>
<input id='startButton' type='button' value='Start' style='width:100px' <input id='startButton' type='button' value='Start' style='width:100px'
onclick="start();" disabled>&nbsp; onclick="startit();" disabled>&nbsp;
<div id="VNC_screen"> <div id="VNC_screen">
<div id="VNC_status_bar" class="VNC_status_bar" style="margin-top: 0px;"> <div id="VNC_status_bar" class="VNC_status_bar" style="margin-top: 0px;">
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
} }
} }
function start() { function startit() {
$D('startButton').value = "Running"; $D('startButton').value = "Running";
$D('startButton').disabled = true; $D('startButton').disabled = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment