@gregoriusrippenstein/node-red-contrib-introspection 0.0.5 → 0.0.6
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.
- package/nodes/15-screenshot.html +10 -0
- package/package.json +1 -1
package/nodes/15-screenshot.html
CHANGED
|
@@ -321,6 +321,16 @@
|
|
|
321
321
|
})
|
|
322
322
|
},
|
|
323
323
|
|
|
324
|
+
oneditsave: function() {
|
|
325
|
+
this.editor.destroy();
|
|
326
|
+
delete this.editor;
|
|
327
|
+
},
|
|
328
|
+
|
|
329
|
+
oneditcancel: function() {
|
|
330
|
+
this.editor.destroy();
|
|
331
|
+
delete this.editor;
|
|
332
|
+
},
|
|
333
|
+
|
|
324
334
|
oneditresize: function(size) {
|
|
325
335
|
var rows = $("#dialog-form>div:not(.node-text-editor-row)");
|
|
326
336
|
var height = $("#dialog-form").height();
|