-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from ketikai/master
fixed a timeago display bug
- Loading branch information
Showing
1 changed file
with
21 additions
and
6 deletions.
There are no files selected for viewing
27 changes: 21 additions & 6 deletions
27
mkdocs_git_revision_date_localized_plugin/js/timeago_mkdocs_material.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,33 @@ | ||
// Script to ensure timeago keeps working when | ||
// used with mkdocs-material's instant loading feature | ||
// Script to ensure timeago keeps working when | ||
// used with mkdocs-material's instant loading feature | ||
|
||
function getLocale(element) { | ||
var raw_locale = element.getAttribute('locale'); | ||
var locale = { | ||
bn: 'bn_IN', | ||
en: 'en_US', | ||
hi: 'hi_IN', | ||
id: 'id_ID', | ||
nb: 'nb_NO', | ||
nn: 'nn_NO', | ||
pt: 'pt_BR', | ||
zh: 'zh_CN' | ||
}[raw_locale]; | ||
return locale ? locale : raw_locale; | ||
} | ||
|
||
if (typeof document$ !== "undefined") { | ||
document$.subscribe(function() { | ||
var nodes = document.querySelectorAll('.timeago'); | ||
if (nodes.length > 0) { | ||
var locale = nodes[0].getAttribute('locale'); | ||
timeago.render(nodes, locale); | ||
var locale = getLocale(nodes[0]); | ||
timeago.render(nodes, locale); | ||
} | ||
}) | ||
} else { | ||
var nodes = document.querySelectorAll('.timeago'); | ||
if (nodes.length > 0) { | ||
var locale = nodes[0].getAttribute('locale'); | ||
timeago.render(nodes, locale); | ||
var locale = getLocale(nodes[0]); | ||
timeago.render(nodes, locale); | ||
} | ||
} |