9 lines
357 B
JavaScript
9 lines
357 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/third-party/google-translate.min.js');
|
||
|
});
|
||
|
}
|