mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 07:53:49 +08:00
FIX: we don't need to refresh dates so often (#8367)
This commit is contained in:
@ -78,7 +78,10 @@
|
||||
.find(".relative-time")
|
||||
.text(formatedDateTime);
|
||||
|
||||
this.timeout = setTimeout(() => processElement($element, options), 10000);
|
||||
this.timeout = setTimeout(
|
||||
() => processElement($element, options),
|
||||
60 * 1000
|
||||
);
|
||||
}
|
||||
|
||||
function _formatTimezone(timezone) {
|
||||
|
Reference in New Issue
Block a user