git-annex/templates/notifications/longpolling.julius

12 lines
249 B
Text
Raw Normal View History

2012-07-31 00:22:10 +00:00
$(function() {
$.get("@{geturl}", function(url){
var f = function() {
longpoll(url, #{ident}
, function() { setTimeout(f, #{delay}); }
, function() { window.location.reload(true); }
);
};
setTimeout(f, #{startdelay});
});
2012-07-31 00:22:10 +00:00
});