diff options
-rw-r--r-- | src/ws/node.js | 8 | ||||
-rw-r--r-- | src/ws/view.js | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/ws/node.js b/src/ws/node.js index fd4a9d7..2f93dac 100644 --- a/src/ws/node.js +++ b/src/ws/node.js @@ -389,6 +389,14 @@ Node.prototype.setAttribute = function(name, value) { this.state_element.style.backgroundColor = "#da4343"; } + else if(value == "preparing") + { + this.state_element.style.backgroundColor = "#f1e0b4"; + } + else if(value == "ready") + { + this.state_element.style.backgroundColor = "#bad0aa"; + } else { this.state_element.style.backgroundColor = "#ebedf0"; diff --git a/src/ws/view.js b/src/ws/view.js index 5b69a24..70d938a 100644 --- a/src/ws/view.js +++ b/src/ws/view.js @@ -424,6 +424,12 @@ function changeState(e) break; default: case "todo": + update(id, "state", "preparing"); + break; + case "preparing": + update(id, "state", "ready"); + break; + case "ready": update(id, "state", "in-progress"); break; } |