hexo/node_modules/hexo-theme-butterfly/layout/includes/third-party/card-post-count/disqus.pug

17 lines
475 B
Plaintext
Raw Normal View History

2023-10-03 11:14:36 +08:00
script.
(() => {
const getCount = () => {
if (window.DISQUSWIDGETS === undefined) {
var d = document, s = d.createElement('script');
s.src = 'https://!{theme.disqus.shortname}.disqus.com/count.js';
s.id = 'dsq-count-scr';
(d.head || d.body).appendChild(s);
} else {
DISQUSWIDGETS.getCount({reset: true});
}
}
window.pjax ? getCount() : window.addEventListener('load', getCount)
})()