FIX: we don't need to refresh dates so often (#8367)

This commit is contained in:
Joffrey JAFFEUX 2019-11-18 10:04:07 +01:00 committed by GitHub
parent 45648e46ba
commit e6442a2d2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {