1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Disable live time updates, #3123

This commit is contained in:
Mike Perham 2016-09-20 10:31:25 -07:00
parent 99506551d2
commit cd3d18b81e

View file

@ -45,7 +45,9 @@ $(function() {
parts[1] = parts[1].toUpperCase();
locale = parts.join('_');
}
timeago().render(document.querySelectorAll('time'), locale);
var t = timeago()
t.render(document.querySelectorAll('time'), locale);
t.cancel();
});
function updatePage(url) {