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

Avoid timeago auto-refreshing itself

@judofyr proposed this solution to #424.
This commit is contained in:
Jeremy Ruppel 2012-10-09 14:36:54 -07:00
parent 5718871cdf
commit 9687bb8ab6

View file

@ -4,7 +4,8 @@
//= require_tree .
$(function() {
$.timeago.settings.allowFuture = true
$.timeago.settings.allowFuture = true;
$.timeago.settings.refreshMillis = 0;
$("time").timeago();
});