Commit 445e96f5 authored by Joel Martin's avatar Joel Martin

Fix more $ references to be $D.

parent b8c27b8c
...@@ -55,17 +55,17 @@ ...@@ -55,17 +55,17 @@
test_state = 'failed'; test_state = 'failed';
break; break;
case 'loaded': case 'loaded':
$('startButton').disabled = false; $D('startButton').disabled = false;
break; break;
} }
if (typeof msg !== 'undefined') { if (typeof msg !== 'undefined') {
$('VNC_status').innerHTML = msg; $D('VNC_status').innerHTML = msg;
} }
} }
function start() { function start() {
$('startButton').value = "Running"; $D('startButton').value = "Running";
$('startButton').disabled = true; $D('startButton').disabled = true;
iterations = 1; iterations = 1;
iteration = 0; iteration = 0;
...@@ -83,8 +83,8 @@ ...@@ -83,8 +83,8 @@
Util.Info(iterations + " iterations took " + total_time + "ms, " + Util.Info(iterations + " iterations took " + total_time + "ms, " +
iter_time + "ms per iteration"); iter_time + "ms per iteration");
rfb.get_canvas().stop(); // Shut-off event interception rfb.get_canvas().stop(); // Shut-off event interception
$('startButton').disabled = false; $D('startButton').disabled = false;
$('startButton').value = "Start"; $D('startButton').value = "Start";
} }
......
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