aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/webui/static/js/console.js
diff options
context:
space:
mode:
Diffstat (limited to 'fg21sim/webui/static/js/console.js')
-rw-r--r--fg21sim/webui/static/js/console.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/fg21sim/webui/static/js/console.js b/fg21sim/webui/static/js/console.js
index 4417b6f..4b2d1b7 100644
--- a/fg21sim/webui/static/js/console.js
+++ b/fg21sim/webui/static/js/console.js
@@ -186,6 +186,8 @@ var startServerTask = function (url, task, kwargs) {
var handleWebSocketMsgConsole = function (msg) {
if (msg.subtype === "log") {
appendLogMessage(msg);
+ } else if (msg.subtype === "status") {
+ updateTaskStatus(msg.status);
} else {
console.warn("WebSocket: received message:", msg);
}