diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-06-13 15:51:28 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-06-13 15:51:28 +0200 |
commit | b56b8a450c2b0a70945998a3f8d7e9b0a71872a6 (patch) | |
tree | 3ab8b6f9f325e2a99219f13cb894fa0178331998 /src | |
parent | 7c1295bf5dc8f72f4e0e43af72fe67847faadf6f (diff) |
Add different background colors to better distinguish between group nodes and leaf nodes
Diffstat (limited to 'src')
-rw-r--r-- | src/ws/node.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ws/node.js b/src/ws/node.js index d79137d..fa97368 100644 --- a/src/ws/node.js +++ b/src/ws/node.js @@ -106,6 +106,15 @@ Node.prototype.addChild = function(node, insertBeforeId) this.children.push(node); this.element.appendChild(node.element); } + + if(this.children.length == 0) + { + this.element.style.backgroundColor = "#aaa"; + } + else + { + this.element.style.backgroundColor = "#aaaa81"; + } }; Node.prototype.removeChild = function(node) @@ -116,6 +125,15 @@ Node.prototype.removeChild = function(node) }); node.parent = null; this.element.removeChild(node.element); + + if(this.children.length == 0) + { + this.element.style.backgroundColor = "#aaa"; + } + else + { + this.element.style.backgroundColor = "#aaaa81"; + } }; Node.prototype.create = function() |