mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 22:17:06 +08:00
breaking changes: waline 的 visitor 改為 pageview feat: algolia 搜索增加文章內容顯示和高亮 feat: 搜索內容顯示區域變大
19 lines
482 B
Plaintext
19 lines
482 B
Plaintext
script.
|
|
(() => {
|
|
function loadWaline () {
|
|
function initWaline () {
|
|
let initData = {
|
|
el: null,
|
|
serverURL: '!{theme.waline.serverURL}',
|
|
comment: true
|
|
}
|
|
const waline = Waline.init(initData)
|
|
}
|
|
|
|
if (typeof Waline === 'function') initWaline()
|
|
else getScript('!{url_for(theme.asset.waline_js)}').then(initWaline)
|
|
}
|
|
|
|
window.pjax ? loadWaline() : window.addEventListener('load', loadWaline)
|
|
})()
|