10 lines
335 B
JavaScript
10 lines
335 B
JavaScript
/* Show article date/time according to user's locale */
|
|
/* global addLocalizedDateTimeToElementsTitles */
|
|
|
|
function initializeArticleDate() {
|
|
var articlesDates = document.querySelectorAll(
|
|
'.crayons-story time, article time, .single-other-article time',
|
|
);
|
|
|
|
addLocalizedDateTimeToElementsTitles(articlesDates, 'datetime');
|
|
}
|