aboutsummaryrefslogtreecommitdiff
path: root/app/loadcss.js
blob: 184b4454de129704a438f2d1ad1383863e94869c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
(function loadcss() {
    document.getElementsByTagName('head')[0].insertAdjacentHTML(
        'beforeend',
        '<link rel="stylesheet" href="spicetify-routes-betterlibrary.css" />');
    // disable after window is closed to prevent an expanded sidebar on opening
    window.addEventListener(
        'beforeunload',
        (event) => {
            disableBetterLib();
        }
        )
})();