mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Trigger node - reset default timeout value when switcing away from wait for reset
This commit is contained in:
parent
b8e610e1b6
commit
43258ee816
@ -14,7 +14,7 @@
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<script type="text/x-red" data-template-name="trigger">
|
<script type="text/html" data-template-name="trigger">
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<label data-i18n="trigger.send" for="node-input-op1"></label>
|
<label data-i18n="trigger.send" for="node-input-op1"></label>
|
||||||
<input type="hidden" id="node-input-op1type">
|
<input type="hidden" id="node-input-op1type">
|
||||||
@ -109,9 +109,11 @@
|
|||||||
$(".node-type-duration").hide();
|
$(".node-type-duration").hide();
|
||||||
}
|
}
|
||||||
else if ($(this).val() == "loop") {
|
else if ($(this).val() == "loop") {
|
||||||
|
if ($("#node-input-duration").val() == 0) { $("#node-input-duration").val(250); }
|
||||||
$(".node-type-wait").hide();
|
$(".node-type-wait").hide();
|
||||||
$(".node-type-duration").show();
|
$(".node-type-duration").show();
|
||||||
} else {
|
} else {
|
||||||
|
if ($("#node-input-duration").val() == 0) { $("#node-input-duration").val(250); }
|
||||||
$(".node-type-wait").show();
|
$(".node-type-wait").show();
|
||||||
$(".node-type-duration").show();
|
$(".node-type-duration").show();
|
||||||
}
|
}
|
||||||
@ -176,8 +178,6 @@
|
|||||||
if ($("#node-then-type").val() == "loop") {
|
if ($("#node-then-type").val() == "loop") {
|
||||||
$("#node-input-duration").val($("#node-input-duration").val() * -1);
|
$("#node-input-duration").val($("#node-input-duration").val() * -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user