Series page: Next episode focus, mobile styling

This commit is contained in:
Aleksi Lassila
2023-08-05 12:47:14 +03:00
parent 6809e20ed5
commit 03e4ff5056
4 changed files with 57 additions and 18 deletions

View File

@@ -1,3 +1,4 @@
import { library } from '$lib/stores/library.store';
import { writable } from 'svelte/store';
const initialValue = { visible: false, jellyfinId: '' };
@@ -13,6 +14,7 @@ function createPlayerState() {
},
close: () => {
store.set({ visible: false, jellyfinId: '' });
library.refresh();
}
};
}