changeset 1206:74ce8e3f8dd5

Bug fix #1593, in progress #1596.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Mon, 22 Feb 2016 15:53:50 +0000
parents 0e49d874ba97
children c3a180d49239
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);