yelog / hexo-theme-3-hexo

hexo主题:三段式设计、极简、方便 Hexo theme: three-stage design
https://yelog.org
MIT License
692 stars 206 forks source link

Fix: 修复 utterance 第一次加载一定失败 #118

Closed emon100 closed 11 months ago

emon100 commented 2 years ago

utterances需要script标签上的属性如issue-term, theme等才能把评论组件加载出来。但是由于主题中使用了jquery-pjax,jquery插入script标签时会将这些属性去除掉,导致utterances使用不正常,要第二次加载才能显示出评论组件,如这个issue: https://github.com/yelog/hexo-theme-3-hexo/issues/110

这个PR通过 https://github.com/utterance/utterances/issues/82 中提供的方法,绕过这个问题。