1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

add missing property select var to HTML node

This commit is contained in:
Dave Conway-Jones 2018-02-02 23:40:01 +00:00
parent d1f7fd8bfd
commit f99051906a
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4

View File

@ -58,6 +58,7 @@
color:"#DEBD5C",
defaults: {
name: {value:""},
property: {value:"payload"},
tag: {value:""},
ret: {value:"html"},
as: {value:"single"}
@ -70,6 +71,9 @@
},
labelStyle: function() {
return this.name?"node_label_italic":"";
},
oneditprepare: function() {
$("#node-input-property").typedInput({default:'msg',types:['msg']});
}
});
</script>