git-annex/templates/notifications/longpolling.julius

12 lines
244 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() { webapp_disconnected(); }
);
};
setTimeout(f, #{startdelay});
});
2012-07-31 00:22:10 +00:00
});