summaryrefslogtreecommitdiffstatshomepage
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/index.html14
1 files changed, 10 insertions, 4 deletions
diff --git a/web/index.html b/web/index.html
index d392f3eaea9..13280cb6405 100644
--- a/web/index.html
+++ b/web/index.html
@@ -24,21 +24,27 @@
writeToScreen('<b style="color: green;">Connected</b>');
};
websocket.onclose = function(ev) {
- writeToScreen('<b style="color: white;">disconnected</b>');
+ writeToScreen('<b style="color: white;">Disconnected</b>');
};
websocket.onmessage = function(ev) {
if (ev.data=='update_machine')
{
- $.getJSON('json/game', function(data) {
+ $.ajax({
+ url: "json/game",
+ cache: false,
+ dataType: "json",
+ success: function(data) {
var items = [];
- if(data.name =='___empty') {
+ if(data.name =='__empty') {
items.push('No driver running');
} else {
items.push('<h1>Currently running : ' + data.description + ' [' + data.manufacturer+']</h1>');
}
document.getElementById('current').innerHTML = items.join('');
- });
+ },
+ error: function (request, status, error) { alert(status + ", " + error); }
+ });
}
};