sorry for doing this.

This commit is contained in:
cryptofyre 2021-12-04 00:04:04 -06:00
parent 5fc82a8bc7
commit b3db294485
106 changed files with 86 additions and 259 deletions

View file

@ -1,32 +0,0 @@
try {
if (MusicKit.getInstance().isAuthorized) {
if (!document.querySelector('#backButtonBar')) {
document.getElementById('web-main').insertAdjacentHTML("afterbegin", `
<div id="backButtonBar">
<div class="button-area" onclick="ipcRenderer.send('back');">
<img src="https://developer.apple.com/design/human-interface-guidelines/macos/images/icons/system-images/control/chevron-backward.png" alt="Back Button">
</div>
</div>
`);
}
if (document.getElementsByClassName('dragDiv right-aligned').length > 0) {
document.getElementById('backButtonBar').style.top = '25px'
}
document.getElementById('web-main').addEventListener('scroll', function () {
if (document.getElementById('web-main').scrollTop > 80) {
document.getElementById('backButtonBar').style.backgroundColor = 'var(--playerBackground)';
document.getElementById('backButtonBar').style.position = 'fixed';
} else {
document.getElementById('backButtonBar').style.backgroundColor = 'transparent';
document.getElementById('backButtonBar').style.position = 'absolute';
}
});
}
} catch (e) {
console.error("[JS] Error while trying to apply backButton.js", e);
}