Tidy up node label and edit dialog

This commit is contained in:
Anna Thomas 2014-10-20 11:39:19 +01:00
parent 2a753c9d22
commit 17e4bf1a11
1 changed files with 3 additions and 4 deletions

View File

@ -23,8 +23,7 @@
</select>
</div>
<div class="form-row" id="node-prop-row">
<label for="node-input-complete">&nbsp;</label>msg.
<input type="text" style="width:205px" id="node-input-complete">
<label for="node-input-complete">&nbsp;</label>msg.<input type="text" style="width:208px" id="node-input-complete">
</div>
<div class="form-row">
<label for="node-input-console"><i class="fa fa-random"></i> to</label>
@ -87,9 +86,9 @@
},
label: function() {
if (this.complete === "true") {
return this.name||"debug msg";
return this.name||"msg";
} else {
return this.name||"debug msg." + this.complete;
return this.name || "msg." + (this.complete === "false" ? "payload" : this.complete);
}
},
labelStyle: function() {