You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
441 B
21 lines
441 B
9 months ago
|
script.
|
||
|
function panguFn () {
|
||
|
if (typeof pangu === 'object') pangu.autoSpacingPage()
|
||
|
else {
|
||
|
getScript('!{url_for(theme.asset.pangu)}')
|
||
|
.then(() => {
|
||
|
pangu.autoSpacingPage()
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function panguInit () {
|
||
|
if (!{theme.pangu.field === 'post'}){
|
||
|
GLOBAL_CONFIG_SITE.isPost && panguFn()
|
||
|
} else {
|
||
|
panguFn()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
document.addEventListener('DOMContentLoaded', panguInit)
|