status update every 3 min

This commit is contained in:
Rodolphe Breard 2013-03-18 10:45:24 +01:00
parent f729661e0b
commit 4a34a1aec7

View file

@ -128,4 +128,10 @@ Client.prototype.init = function(client, ui) {
elem.connect();
};
})(this), 10000);
setInterval((function(elem) {
return function() {
elem.updateStatus();
};
})(this), 180000);
};