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.
15 lines
454 B
15 lines
454 B
9 months ago
|
script.
|
||
|
(() => {
|
||
|
const abcjsInit = () => {
|
||
|
const abcjsFn = () => {
|
||
|
document.querySelectorAll(".abc-music-sheet").forEach(ele => {
|
||
|
ABCJS.renderAbc(ele, ele.innerHTML, {responsive: 'resize'})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
typeof ABCJS === 'object' ? abcjsFn()
|
||
|
: getScript('!{url_for(theme.asset.abcjs_basic_js)}').then(abcjsFn)
|
||
|
}
|
||
|
|
||
|
window.pjax ? abcjsInit() : window.addEventListener('load', abcjsInit)
|
||
|
})()
|