Merge pull request #977 from kkfive/dev

fix: artalk评论option无效
pull/981/head
Jerry Wong 2 years ago committed by GitHub
commit 49e4903b34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
- const { server, site } = theme.artalk
- const { server, site, option } = theme.artalk
script.
function addArtalkSource () {
@ -10,14 +10,14 @@ script.
function loadArtalk () {
function initArtalk () {
window.artalkItem = new Artalk({
window.artalkItem = new Artalk(Object.assign({
el: '#artalk-wrap',
server: '!{server}',
site: '!{site}',
pageKey: location.pathname,
darkMode: document.documentElement.getAttribute('data-theme') === 'dark',
countEl: '.artalk-count'
})
},!{JSON.stringify(option)}))
}
if (typeof window.artalkItem === 'object') setTimeout(()=>{initArtalk()},200)

Loading…
Cancel
Save