status update every 3 min
This commit is contained in:
parent
f729661e0b
commit
4a34a1aec7
1 changed files with 6 additions and 0 deletions
|
@ -128,4 +128,10 @@ Client.prototype.init = function(client, ui) {
|
||||||
elem.connect();
|
elem.connect();
|
||||||
};
|
};
|
||||||
})(this), 10000);
|
})(this), 10000);
|
||||||
|
|
||||||
|
setInterval((function(elem) {
|
||||||
|
return function() {
|
||||||
|
elem.updateStatus();
|
||||||
|
};
|
||||||
|
})(this), 180000);
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue