This commit is contained in:
Julian Lam
2016-11-22 10:23:28 -05:00
parent ce2d702117
commit d28f7de19e
2 changed files with 2 additions and 2 deletions

View File

@@ -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();

View File

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