aboutsummaryrefslogtreecommitdiff
path: root/templates/longpolling.julius
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-07-29 00:55:22 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-07-29 00:55:22 -0400
commit38ade1af70a08d278a56bcec4f7a9e32b09f4336 (patch)
treeb9804e67793e2fa8312aff1edc497dc5b5a0f455 /templates/longpolling.julius
parent376f8443c1786a1acbaaf24fc7c4f8a662f0ef38 (diff)
better noscript UI
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 );