ran pretty on the front
This commit is contained in:
parent
7743bda3eb
commit
4160235b92
54 changed files with 808 additions and 694 deletions
|
@ -4,7 +4,7 @@ import { writable } from "svelte/store";
|
|||
* A store that contains the URL of the sound currently playing
|
||||
*/
|
||||
function createSoundPlayingStore() {
|
||||
const { subscribe, set, update } = writable<string|null>(null);
|
||||
const { subscribe, set, update } = writable<string | null>(null);
|
||||
|
||||
return {
|
||||
subscribe,
|
||||
|
@ -13,9 +13,7 @@ function createSoundPlayingStore() {
|
|||
},
|
||||
soundEnded: () => {
|
||||
set(null);
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue