mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
15 lines
495 B
Plaintext
15 lines
495 B
Plaintext
script.
|
|
(() => {
|
|
function abcjsInit() {
|
|
function abcjsFn() {
|
|
for (let abcContainer of document.getElementsByClassName("abc-music-sheet")) {
|
|
ABCJS.renderAbc(abcContainer, abcContainer.innerHTML, {responsive: 'resize'})
|
|
}
|
|
}
|
|
|
|
typeof ABCJS === 'object' ? abcjsFn()
|
|
: getScript('!{url_for(theme.asset.abcjs_basic_js)}').then(abcjsFn)
|
|
}
|
|
|
|
window.pjax ? abcjsInit() : document.addEventListener('DOMContentLoaded', abcjsInit)
|
|
})() |