@gregoriusrippenstein/node-red-contrib-nodedev 0.5.6 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
while (configNodes.length > 1) {
|
|
26
26
|
var configNode = configNodes.pop();
|
|
27
27
|
RED.nodes.remove(configNode.id);
|
|
28
|
-
RED.nodes.dirty(true);
|
|
28
|
+
// RED.nodes.dirty(true);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
// When we found a config node, let's use that one
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
RED.nodes.add(globalYourConfigNode);
|
|
55
55
|
|
|
56
56
|
// Make sure the "Deploy" button becomes active
|
|
57
|
-
RED.nodes.dirty(true);
|
|
57
|
+
// RED.nodes.dirty(true);
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
while (configNodes.length > 1) {
|
|
88
88
|
var configNode = configNodes.pop();
|
|
89
89
|
RED.nodes.remove(configNode.id);
|
|
90
|
-
RED.nodes.dirty(true);
|
|
90
|
+
// RED.nodes.dirty(true);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// When we found a config node, let's use that one
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
RED.nodes.add(globalYourConfigNode);
|
|
129
129
|
|
|
130
130
|
// Make sure the "Deploy" button becomes active
|
|
131
|
-
RED.nodes.dirty(true);
|
|
131
|
+
// RED.nodes.dirty(true);
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
|
|
199
199
|
if (globalYourConfigNode.pkgversion != data) {
|
|
200
200
|
globalYourConfigNode.pkgversion = data.trim();
|
|
201
|
-
RED.nodes.dirty(true);
|
|
201
|
+
// RED.nodes.dirty(true);
|
|
202
202
|
}
|
|
203
203
|
})
|
|
204
204
|
$("#node-input-nodefactorysidebar-package-version").val(globalYourConfigNode.pkgversion);
|
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
|
|
211
211
|
if (globalYourConfigNode.pkgname != data) {
|
|
212
212
|
globalYourConfigNode.pkgname = data.trim();
|
|
213
|
-
RED.nodes.dirty(true);
|
|
213
|
+
// RED.nodes.dirty(true);
|
|
214
214
|
}
|
|
215
215
|
})
|
|
216
216
|
$("#node-input-nodefactorysidebar-package-name").val(globalYourConfigNode.pkgname);
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
|
|
223
223
|
if (globalYourConfigNode.pkgregistry != data) {
|
|
224
224
|
globalYourConfigNode.pkgregistry = data.trim();
|
|
225
|
-
RED.nodes.dirty(true);
|
|
225
|
+
// RED.nodes.dirty(true);
|
|
226
226
|
}
|
|
227
227
|
})
|
|
228
228
|
$("#node-input-nodefactorysidebar-package-registry").val(globalYourConfigNode.pkgregistry);
|