chrome_point_plus/chrome_point_plus/js/i18n.js

7 lines
298 B
JavaScript
Raw Normal View History

2015-01-05 19:40:26 +00:00
document.addEventListener('DOMContentLoaded', function() {
// Processing all emenents contains data-i18n attribute
2015-01-05 19:40:26 +00:00
Array.prototype.forEach.call(document.querySelectorAll('[data-i18n]'), function(elem) {
elem.innerHTML = chrome.i18n.getMessage(elem.dataset.i18n);
});
2015-01-05 19:40:26 +00:00
}, false);