Implement a better management interface for Settings (#809)

This commit is contained in:
Dane Everitt 2017-12-14 21:05:26 -06:00 committed by GitHub
parent 75eb506dab
commit f9df463d32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 1274 additions and 383 deletions

View file

@ -66,6 +66,7 @@ var Server = (function () {
delay: 0,
});
}
setStatusIcon(999);
});
Socket.io.on('connect_error', function (err) {
@ -77,6 +78,7 @@ var Server = (function () {
delay: 0,
});
}
setStatusIcon(999);
});
// Connected to Socket Successfully
@ -111,6 +113,7 @@ var Server = (function () {
$('#server_status_icon').html('<i class="fa fa-circle text-warning"></i> Stopping');
break;
default:
$('#server_status_icon').html('<i class="fa fa-question-circle text-danger"></i> Connection Error');
break;
}
}