mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-12 14:07:06 +08:00
feat: 增加 waline avatarCDN 配置(最新評論也會更新) feat: archives 的 標題 在 menu 配置中獲取 fix: 修復文章頁 mathjax 因字體小導致顯示重疊的 bug close #587 fix: 修復 mathjax 在列表下,導致 列表沒有樣式的 bug close #586 improvement: 減少卡頓,apple 裝置首頁背景 background-attachment 設為 scroll
18 lines
452 B
Plaintext
18 lines
452 B
Plaintext
script.
|
|
(() => {
|
|
function loadWaline () {
|
|
function initWaline () {
|
|
let initData = {
|
|
el: null,
|
|
serverURL: '!{theme.waline.serverURL}',
|
|
}
|
|
const waline = new Waline(initData)
|
|
}
|
|
|
|
if (typeof Waline === 'function') initWaline()
|
|
else getScript('!{url_for(theme.CDN.waline)}').then(initWaline)
|
|
}
|
|
|
|
window.pjax ? loadWaline() : window.addEventListener('load', loadWaline)
|
|
})()
|