hugo-theme-next/assets/js/3rd/others/lawidget.js

22 lines
592 B
JavaScript
Raw Normal View History

/* 51La sidebar data widget */
NexT.plugins.others.lawidget = function() {
if (!NexT.CONFIG.lawidget ) {
return;
}
const element = '#siteinfo-card-widget';
const lawt_js = NexT.CONFIG.lawidget.js.replace('laId', NexT.CONFIG.lawidget.id);
NexT.utils.lazyLoadComponent(element, function () {
NexT.utils.getScript(lawt_js,{
attributes: {
id: 'LA-DATA-WIDGET',
crossorigin: 'anonymous',
charset: 'UTF-8',
defer: true
},
parentNode: document.getElementById('la-siteinfo-widget')
}, NexT.utils.fmtLaWidget());
});
}