2012-07-31 00:22:10 +00:00
|
|
|
$(function() {
|
2012-07-31 02:24:19 +00:00
|
|
|
$.get("@{geturl}", function(url){
|
2013-01-10 03:47:24 +00:00
|
|
|
var f = function() {
|
2013-01-14 22:35:33 +00:00
|
|
|
longpoll(url, #{ident}
|
2013-01-10 03:47:24 +00:00
|
|
|
, function() { setTimeout(f, #{delay}); }
|
2013-09-09 05:24:20 +00:00
|
|
|
, function() { window.location.reload(true); }
|
2013-01-10 03:47:24 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
setTimeout(f, #{startdelay});
|
2012-07-31 02:24:19 +00:00
|
|
|
});
|
2012-07-31 00:22:10 +00:00
|
|
|
});
|