changeset 2306:a5299dfc0814

Merge branch 'master' of https://github.com/BrechtDeMan/WebAudioEvaluationTool
author www-data <www-data@sucuk.dcs.qmul.ac.uk>
date Thu, 28 Apr 2016 16:21:07 +0100
parents b74241682c17 (current diff) 064b99859511 (diff)
children cc7a0102e079
files
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/interfaces/ABX.css	Thu Apr 28 10:21:05 2016 +0100
+++ b/interfaces/ABX.css	Thu Apr 28 16:21:07 2016 +0100
@@ -51,6 +51,10 @@
 	background-color: #008000;
 }
 
+div.comparator-selector.inactive{
+	background-color: yellow !important;
+}
+
 div.comparator-selector span {
 	font-size: 4em;
 }
@@ -75,4 +79,4 @@
     position: absolute;
     top: 10px;
     left: 120px;
-}
\ No newline at end of file
+}
--- a/interfaces/ABX.js	Thu Apr 28 10:21:05 2016 +0100
+++ b/interfaces/ABX.js	Thu Apr 28 16:21:07 2016 +0100
@@ -375,6 +375,7 @@
             break;
     }
     var node = new this.interfaceObject(audioObject,label);
+    node.box.children[0].classList.add('inactive');
     audioObject.bindInterface(node);
     this.X = node;
     this.boxHolders.appendChild(node.box);