git-annex-5.20131127: templates/notifications/longpolling.julius
$(function() {
$.get("@{geturl}", function(url){
var f = function() {
longpoll_div(url, #{ident}
, function() { setTimeout(f, #{delay}); }
, function() { window.location.reload(true); }
);
};
setTimeout(f, #{startdelay});
});
});