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']});
}
});