11 lines
242 B
Text
11 lines
242 B
Text
$(function() {
|
|
$.get("@{geturl}", function(url){
|
|
var f = function() {
|
|
longpoll(url, #{ident}
|
|
, function() { setTimeout(f, #{delay}); }
|
|
, function() { webapp_disconnected(); }
|
|
);
|
|
};
|
|
setTimeout(f, #{startdelay});
|
|
});
|
|
});
|