16 lines
389 B
JavaScript
16 lines
389 B
JavaScript
|
/* global NexT, CONFIG */
|
||
|
|
||
|
document.addEventListener('page:loaded', () => {
|
||
|
if (!CONFIG.page.comments) return;
|
||
|
|
||
|
NexT.utils.loadComments('#isso-thread')
|
||
|
.then(() => NexT.utils.getScript(`${CONFIG.isso}js/embed.min.js`, {
|
||
|
attributes: {
|
||
|
dataset: {
|
||
|
isso: `${CONFIG.isso}`
|
||
|
}
|
||
|
},
|
||
|
parentNode: document.querySelector('#isso-thread')
|
||
|
}));
|
||
|
});
|