mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 05:08:00 +02:00
Changes:
- Added Blur (Light) theme, Closes #62 - Support Changing Default Tab (related to #56) - Link to Piped, Closes #48 - Continuations for albums (related to #46) - Support for recently added languages
This commit is contained in:
parent
335f548219
commit
edb618b3f5
12 changed files with 487 additions and 422 deletions
11
src/App.vue
11
src/App.vue
|
@ -114,9 +114,10 @@ onBeforeMount(() => {
|
|||
}
|
||||
|
||||
/* Set the default locale if set */
|
||||
if (store.locale) {
|
||||
setupLocale(store.locale);
|
||||
}
|
||||
if (store.locale) setupLocale(store.locale);
|
||||
|
||||
/* Set the default tab */
|
||||
if (location.pathname == '/') nav.state.page = store.page;
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
|
@ -125,9 +126,7 @@ onMounted(() => {
|
|||
|
||||
/* Alert User on close if url is present */
|
||||
window.onbeforeunload = () => {
|
||||
if (data.state.url) {
|
||||
return 'Are you Sure?';
|
||||
}
|
||||
if (data.state.url) return 'Are you Sure?';
|
||||
};
|
||||
|
||||
/* Setup IndexedDB for storing custom playlists */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue