misc: drop homescreen shortcut button

this feature is no longer needed since you can add shortcut from webui-x manager.
This commit is contained in:
KOWX712
2025-07-03 20:53:55 +08:00
parent e4f1c7fcc8
commit b58397da61
5 changed files with 0 additions and 14 deletions

View File

@@ -205,14 +205,6 @@ function checkMMRL() {
if (window.$tricky_store && Object.keys($tricky_store).length > 0) {
// Set status bars theme based on device theme
$tricky_store.setLightStatusBars(!window.matchMedia('(prefers-color-scheme: dark)').matches)
// Create home screen shortcut
const shortcutButton = document.getElementById('shortcut');
shortcutButton.style.display = 'flex';
shortcutButton.addEventListener('click', () => {
$tricky_store.createShortcut();
showPrompt("prompt_shortcut_created", true);
});
}
}