2012-07-30 22:01:41 +00:00
|
|
|
// longpolling for #{ident}
|
|
|
|
function poller#{ident}() {
|
|
|
|
if (longpoll('@{gethtml}', '#{ident}')) {
|
|
|
|
setTimeout(poller#{ident}, #{delay});
|
2012-07-26 21:56:24 +00:00
|
|
|
}
|
2012-07-30 22:01:41 +00:00
|
|
|
}
|
|
|
|
(function( $ ) {
|
|
|
|
$(document).bind('ready.app', function() {
|
|
|
|
setTimeout(poller#{ident}, #{startdelay});
|
|
|
|
});
|
2012-07-26 21:56:24 +00:00
|
|
|
})( jQuery );
|