From 257525fcdaf360ccb2c2617bf2149fe27ea3487b Mon Sep 17 00:00:00 2001 From: Nicholas O'Leary Date: Sat, 5 Oct 2013 22:34:48 +0100 Subject: [PATCH] Inject node: no-repeat not showing correctly --- nodes/core/20-inject.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/core/20-inject.html b/nodes/core/20-inject.html index a4c46ede1..0d0de8a02 100644 --- a/nodes/core/20-inject.html +++ b/nodes/core/20-inject.html @@ -202,7 +202,7 @@ }, oneditprepare: function() { var repeattype = "none"; - if (parseInt(this.repeat) != 0) { + if (this.repeat != "") { repeattype = "interval"; $("#inject-time-interval-units option").filter(function() {return $(this).val() == "s";}).attr('selected',true); $("#inject-time-interval-count").val(this.repeat);