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.
18 lines
467 B
18 lines
467 B
- const { host, siteId, option } = theme.remark42 |
|
|
|
script. |
|
(()=>{ |
|
window.remark_config = Object.assign({ |
|
host: '!{host}', |
|
site_id: '!{siteId}', |
|
},!{JSON.stringify(option)}) |
|
|
|
function getCount () { |
|
const s = document.createElement('script') |
|
s.src = remark_config.host + '/web/counter.js' |
|
s.defer = true |
|
document.head.appendChild(s) |
|
} |
|
|
|
window.pjax ? getCount() : window.addEventListener('load', getCount) |
|
})() |