git-annex-3.20130124: templates/notifications/longpolling.julius
$(function() {
$.get("@{geturl}", function(url){
var f = function() {
longpoll(url, #{ident}
, function() { setTimeout(f, #{delay}); }
, function() { webapp_disconnected(); }
);
};
setTimeout(f, #{startdelay});
});
});