hexo-theme-next
Version:
Elegant and powerful theme for Hexo.
22 lines (18 loc) • 727 B
JavaScript
/* global NexT, CONFIG, DisqusJS */
document.addEventListener('page:loaded', async () => {
if (!CONFIG.page.comments) return;
await NexT.utils.loadComments('#disqus_thread');
await NexT.utils.getScript(CONFIG.disqusjs.js, { condition: window.DisqusJS });
window.dsqjs = new DisqusJS({
api : CONFIG.disqusjs.api || 'https://disqus.com/api/',
apikey : CONFIG.disqusjs.apikey,
shortname : CONFIG.disqusjs.shortname,
url : CONFIG.page.permalink,
identifier: CONFIG.page.path,
title : CONFIG.page.title
});
window.dsqjs.render(document.querySelector('.disqusjs-container'));
});
document.addEventListener('pjax:send', () => {
if (window.dsqjs) window.dsqjs.destroy();
});