packages feed

git-annex-4.20130909: templates/notifications/longpolling.julius

$(function() {
	$.get("@{geturl}", function(url){
		var f = function() {
			longpoll(url, #{ident}
				, function() { setTimeout(f, #{delay}); }
				, function() { window.location.reload(true); }
			);	
		};
		setTimeout(f, #{startdelay});
	});
});