@gregoriusrippenstein/node-red-contrib-nodedev 0.5.5 → 0.5.7
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.
|
@@ -58,6 +58,7 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
58
58
|
|
|
59
59
|
nodered_uninstall: { value: false },
|
|
60
60
|
|
|
61
|
+
create_control_center: { value: false },
|
|
61
62
|
ignore_package_check: { value: false },
|
|
62
63
|
|
|
63
64
|
gitcommit: { value: false },
|
|
@@ -99,6 +100,12 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
99
100
|
},
|
|
100
101
|
|
|
101
102
|
oneditprepare: function () {
|
|
103
|
+
$('#node-input-create_control_center').on('change', () => {
|
|
104
|
+
if ($('#node-input-create_control_center').is(":checked") ) {
|
|
105
|
+
$('#node-input-gitcommit').prop('checked', true).trigger('change')
|
|
106
|
+
}
|
|
107
|
+
})
|
|
108
|
+
|
|
102
109
|
$('#node-input-nodered_uninstall').on('change', () => {
|
|
103
110
|
if ($('#node-input-nodered_uninstall').is(":checked")) {
|
|
104
111
|
$('#node-input-noderedinstall').prop('checked', false).trigger('change')
|
|
@@ -260,6 +267,13 @@ RED.nodes.registerType('NodeDevOps', {
|
|
|
260
267
|
<input type="text" id="node-input-pdescription" placeholder="Package description"/>
|
|
261
268
|
</div>
|
|
262
269
|
|
|
270
|
+
<div class="form-row">
|
|
271
|
+
<label for="node-input-create_control_center" style="min-width: 150px;"">
|
|
272
|
+
<span>Create Control Center?</span>
|
|
273
|
+
</label>
|
|
274
|
+
<input type="checkbox" id="node-input-create_control_center" style="display:inline-block; width:15px; vertical-align:baseline;">
|
|
275
|
+
</div>
|
|
276
|
+
|
|
263
277
|
<div class="form-row">
|
|
264
278
|
<label for="node-input-ignore_package_check" style="min-width: 150px;"">
|
|
265
279
|
<span>No package check?</span>
|