@gregoriusrippenstein/node-red-contrib-nodedev 0.5.7 → 0.5.9

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.
@@ -26,6 +26,7 @@ module.exports = (function () {
26
26
  "hpp": "cpp",
27
27
  "hh": "cpp",
28
28
  "hxx": "cpp",
29
+ "csp": "csp",
29
30
  "css": "css",
30
31
  "mligo": "cameligo",
31
32
  "coffee": "coffeescript",
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name" : "@gregoriusrippenstein/node-red-contrib-nodedev",
3
- "version": "0.5.7",
3
+ "version": "0.5.9",
4
4
  "dependencies": {
5
5
  "pako": "^2.1.0",
6
6
  "tar-stream": "^3.1.6",
@@ -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);
@@ -351,6 +351,7 @@
351
351
 
352
352
  <!-- The html for the right sidebar plugin screen -->
353
353
  <script type="text/x-red" data-template-name="NodeFactorySidebar">
354
+ <div style="position: relative; height: 100%; overflow-y: auto;">
354
355
  <div class="form-row func-nodedev-pkgimporter-tabs-row">
355
356
  <ul style="min-width: 600px; margin-bottom: 20px;" id="func-nodedev-pkgimporter-tabs"></ul>
356
357
  </div>
@@ -480,4 +481,5 @@
480
481
  </div>
481
482
  </div>
482
483
  </div>
484
+ </div>
483
485
  </script>