summaryrefslogtreecommitdiff
path: root/templates/longpolling.julius
diff options
context:
space:
mode:
Diffstat (limited to 'templates/longpolling.julius')
-rw-r--r--templates/longpolling.julius6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/longpolling.julius b/templates/longpolling.julius
index 945ef1251..926249a35 100644
--- a/templates/longpolling.julius
+++ b/templates/longpolling.julius
@@ -17,7 +17,7 @@ $.LongPoll = (function() {
'dataType': 'html',
'success': function(data, status, jqxhr) {
$('##{ident}').replaceWith(data);
- setTimeout($.LongPoll.send, #{delay});
+ setTimeout($.LongPoll.send, #{show delay});
numerrs=0;
},
'error': function(jqxhr, msg, e) {
@@ -26,7 +26,7 @@ $.LongPoll = (function() {
window.close();
}
else {
- setTimeout($.LongPoll.send, #{delay});
+ setTimeout($.LongPoll.send, #{show delay});
}
},
});
@@ -35,7 +35,7 @@ $.LongPoll = (function() {
}());
$(document).bind('ready.app', function() {
- setTimeout($.LongPoll.send, #{startdelay});
+ setTimeout($.LongPoll.send, #{show startdelay});
});
})( jQuery );