v1.18.x
Julian Lam 8 years ago
parent ce2d702117
commit d28f7de19e

@ -22,6 +22,7 @@ app.cacheBuster = null;
app.load = function () {
app.loadProgressiveStylesheet();
overrides.overrideTimeago();
var url = ajaxify.start(window.location.pathname.slice(1) + window.location.search + window.location.hash);
ajaxify.updateHistory(url, true);
@ -52,7 +53,6 @@ app.cacheBuster = null;
});
overrides.overrideBootbox();
overrides.overrideTimeago();
createHeaderTooltips();
app.showEmailConfirmWarning();
app.showCookieWarning();

@ -160,7 +160,7 @@ if ('undefined' !== typeof window) {
els.each(function () {
iso = this.getAttribute('title');
this.setAttribute('datetime', iso);
this.setAttribute('title', new Date(iso).toLocaleString(config.userLang.replace('_', '-'), options));
$(this).text(new Date(iso).toLocaleString(config.userLang.replace('_', '-'), options));
});
timeagoFn.apply(this, arguments);

Loading…
Cancel
Save