mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Changed update interval to 15 seconds.
This commit is contained in:
parent
2bc7ab4103
commit
a636d4510a
1 changed files with 2 additions and 2 deletions
|
@ -804,7 +804,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
||||||
// Auto-reload the results every one minute.
|
// Auto-reload the results every one minute.
|
||||||
var interval = setInterval(function() {
|
var interval = setInterval(function() {
|
||||||
$('#reload-appointments').trigger('click');
|
$('#reload-appointments').trigger('click');
|
||||||
}, 60000);
|
}, 15000);
|
||||||
};
|
};
|
||||||
|
|
||||||
})(window.BackendCalendarTableView);
|
})(window.BackendCalendarTableView);
|
||||||
|
|
Loading…
Reference in a new issue