502bc5d5f8
does not work though. stupid JS
11 lines
269 B
Text
11 lines
269 B
Text
// longpolling for #{ident}
|
|
function poller#{ident}() {
|
|
if (longpoll('@{gethtml}', '#{ident}')) {
|
|
setTimeout(poller#{ident}, #{delay});
|
|
}
|
|
}
|
|
(function( $ ) {
|
|
$(document).bind('ready.app', function() {
|
|
setTimeout(poller#{ident}, #{startdelay});
|
|
});
|
|
})( jQuery );
|