changeset 638:b5e6576a491a Dev_main

Fixed Bug #1591
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Tue, 22 Mar 2016 14:01:47 +0000
parents df6c09f5835d
children 27dc7a36ecd3
files test_create/test_core.js
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/test_create/test_core.js	Tue Mar 22 13:44:59 2016 +0000
+++ b/test_create/test_core.js	Tue Mar 22 14:01:47 2016 +0000
@@ -870,6 +870,7 @@
                             this.inputLabel.addEventListener("change",this,false);
                             this.inputName.value = this.specification.name;
                             this.inputLabel.value = this.specification.text;
+                            this.inputLabel.style.width = "350px";
                             
                             this.deleteEntry = {
                                 root: document.createElement("button"),
@@ -1051,6 +1052,7 @@
                 this.positionInput.setAttribute("name","position");
                 this.textInput = document.createElement("input");
                 this.textInput.setAttribute("name","text");
+                this.textInput.style.width = "300px";
                 this.textInput.value = specification.text;
                 this.specification = specification;
                 this.parent = parent;