shuffle the clients every 7 seconds

This commit is contained in:
harry 2019-04-25 15:33:09 +01:00
parent bf696ef474
commit 965c0c302c
1 changed files with 5 additions and 3 deletions

View File

@ -51,6 +51,8 @@ app.createMapMultiMarker = function(mapId, lat, lng, zoom, markersArray) {
};
//# sourceMappingURL=app.js.map
$('#client-list .column').shuffle();
$('#client-list .column').shuffle();
window.setInterval(function(){
/// call your function here
$('#client-list .column').shuffle();
}, 7000);