mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-10 21:17:07 +08:00
20 lines
457 B
Plaintext
20 lines
457 B
Plaintext
script.
|
|
function panguFn () {
|
|
if (typeof pangu === 'object') pangu.spacingElementById('content-inner')
|
|
else {
|
|
$.getScript('!{url_for(theme.CDN.pangu)}', () => {
|
|
pangu.spacingElementById('content-inner')
|
|
})
|
|
}
|
|
}
|
|
|
|
function panguInit () {
|
|
if (!{theme.pangu.field === 'post'}){
|
|
GLOBAL_CONFIG_SITE.isPost && panguFn()
|
|
} else {
|
|
panguFn()
|
|
}
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', panguFn)
|