From b406b32909d039ce181456ad49539b5a79b86d4c Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Fri, 2 Feb 2018 23:38:26 +0000 Subject: [PATCH] finish msg.property selector for geohash, msgpack and w3w --- parsers/geohash/70-geohash.html | 3 +++ parsers/geohash/package.json | 2 +- parsers/msgpack/70-msgpack.html | 3 +++ parsers/msgpack/package.json | 2 +- parsers/what3words/package.json | 2 +- parsers/what3words/what3words.html | 3 +++ 6 files changed, 12 insertions(+), 3 deletions(-) diff --git a/parsers/geohash/70-geohash.html b/parsers/geohash/70-geohash.html index e4cbd579..43a0d5b8 100644 --- a/parsers/geohash/70-geohash.html +++ b/parsers/geohash/70-geohash.html @@ -36,6 +36,9 @@ }, labelStyle: function() { return this.name?"node_label_italic":""; + }, + oneditprepare: function() { + $("#node-input-property").typedInput({default:'msg',types:['msg']}); } }); diff --git a/parsers/geohash/package.json b/parsers/geohash/package.json index 08e0d7c8..68339339 100644 --- a/parsers/geohash/package.json +++ b/parsers/geohash/package.json @@ -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" diff --git a/parsers/msgpack/70-msgpack.html b/parsers/msgpack/70-msgpack.html index ceed92d5..12552ff0 100644 --- a/parsers/msgpack/70-msgpack.html +++ b/parsers/msgpack/70-msgpack.html @@ -35,6 +35,9 @@ }, labelStyle: function() { return this.name?"node_label_italic":""; + }, + oneditprepare: function() { + $("#node-input-property").typedInput({default:'msg',types:['msg']}); } }); diff --git a/parsers/msgpack/package.json b/parsers/msgpack/package.json index d5c163e9..ec71f920 100644 --- a/parsers/msgpack/package.json +++ b/parsers/msgpack/package.json @@ -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" diff --git a/parsers/what3words/package.json b/parsers/what3words/package.json index 5d011dbb..4f8ccd9a 100644 --- a/parsers/what3words/package.json +++ b/parsers/what3words/package.json @@ -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" diff --git a/parsers/what3words/what3words.html b/parsers/what3words/what3words.html index 6e8d5a23..a90212e4 100644 --- a/parsers/what3words/what3words.html +++ b/parsers/what3words/what3words.html @@ -62,6 +62,9 @@ }, labelStyle: function() { return this.name?"node_label_italic":""; + }, + oneditprepare: function() { + $("#node-input-property").typedInput({default:'msg',types:['msg']}); } });