hugo-theme-next/assets/js/3rd/others/translate.js
2025-01-05 16:40:58 +08:00

9 lines
349 B
JavaScript

/* Google translate plugin */
NexT.plugins.others.translate = function() {
const element = '#gtranslate';
if (!NexT.utils.checkDOMExist(element)) return;
NexT.utils.lazyLoadComponent(element, function() {
window.translateelement_styles='/css/google-translate.min.css';
NexT.utils.getScript('/js/3rd/google-translate.min.js');
});
}