commit 3e97d42c379cf3e9efbcfb4a2a5a2bf6eaabc908
parent b9d5a883b2c262001daa1a8565b4c34bdf9880ef
Author: Katja (ctucx) <git@ctu.cx>
Date: Sun, 19 Jan 2025 15:41:23 +0100
parent b9d5a883b2c262001daa1a8565b4c34bdf9880ef
Author: Katja (ctucx) <git@ctu.cx>
Date: Sun, 19 Jan 2025 15:41:23 +0100
settingsView: remove `new all`
1 file changed, 0 insertions(+), 6 deletions(-)
diff --git a/src/settingsView.js b/src/settingsView.js @@ -34,7 +34,6 @@ const settingsTemplate = () => html` <button class="button" id="clear" @click=${clearDataStorage}><span>${t('clearstorage')}</span></button> <button class="button" id="save" @click=${saveSettings}><span>${t('save')}</span></button> - <button class="button" id="quit" style="float:right;" @click=${newAll}><span>Quit Sibelius</span></button> </div> `; @@ -44,11 +43,6 @@ const rebuildCache = () => { location.reload(); }; -const newAll = () => { - ElementById('clear').innerText = 'New All'; - ElementById('save').innerText = 'Save'; -}; - const saveSettings = async () => { await modifySettings(settings => { settings.showRIL100Names = ElementById('ril100').checked;