Mercurial > hg > webaudioevaluationtool
changeset 2114:10117e9f87c5
Bug fix #1593, in progress #1596.
author | Nicholas Jillings <nickjillings@users.noreply.github.com> |
---|---|
date | Mon, 22 Feb 2016 15:53:50 +0000 |
parents | d2abe3b139d2 |
children | c59d1a77bf8f |
files | test_create/test_core.js |
diffstat | 1 files changed, 2 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/test_create/test_core.js Mon Feb 22 15:48:28 2016 +0000 +++ b/test_create/test_core.js Mon Feb 22 15:53:50 2016 +0000 @@ -1031,10 +1031,6 @@ } } - this.continue = function() - { - popupObject.hide(); - } } } } @@ -1239,7 +1235,7 @@ // First perform the setupNode; var setupSchema = specification.schema.getAllElementsByName('setup')[0]; - this.setupDOM = new this.createGeneralNodeDOM('setup','setup',null); + this.setupDOM = new this.createGeneralNodeDOM('Global Configuration','setup',null); this.injectDOM.appendChild(this.setupDOM.rootDOM); var setupAttributes = setupSchema.getAllElementsByTagName('xs:attribute'); for (var i=0; i<setupAttributes.length; i++) @@ -1255,7 +1251,7 @@ this.interfaceDOM.build("Interface","setup-interface",this.setupDOM.rootDOM); // Now build the Metrics selection node - var metric = this.createGeneralNodeDOM("metrics","setup-metric",this.setupDOM); + var metric = this.createGeneralNodeDOM("Session Metrics","setup-metric",this.setupDOM); metric.rootDOM.removeChild(metric.attributeDOM); this.setupDOM.children.push(metric); this.setupDOM.childrenDOM.appendChild(metric.rootDOM);