finish msg.property selector for geohash, msgpack and w3w

This commit is contained in:
Dave Conway-Jones 2018-02-02 23:38:26 +00:00
parent b2de928860
commit b406b32909
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4
6 changed files with 12 additions and 3 deletions

View File

@ -36,6 +36,9 @@
},
labelStyle: function() {
return this.name?"node_label_italic":"";
},
oneditprepare: function() {
$("#node-input-property").typedInput({default:'msg',types:['msg']});
}
});
</script>

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-geohash",
"version" : "0.1.7",
"version" : "0.1.8",
"description" : "A Node-RED node to encode and decode lat,lon pairs to a geohash.",
"dependencies" : {
"ngeohash" : "0.6.0"

View File

@ -35,6 +35,9 @@
},
labelStyle: function() {
return this.name?"node_label_italic":"";
},
oneditprepare: function() {
$("#node-input-property").typedInput({default:'msg',types:['msg']});
}
});
</script>

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-msgpack",
"version" : "1.1.1",
"version" : "1.1.2",
"description" : "A Node-RED node to pack and unpack objects to msgpack format",
"dependencies" : {
"msgpack-lite" : "^0.1.26"

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-what3words",
"version" : "0.1.7",
"version" : "0.1.8",
"description" : "A Node-RED node to convert locations to/from what3words",
"dependencies" : {
"geo.what3words" : "^2.0.0"

View File

@ -62,6 +62,9 @@
},
labelStyle: function() {
return this.name?"node_label_italic":"";
},
oneditprepare: function() {
$("#node-input-property").typedInput({default:'msg',types:['msg']});
}
});
</script>