WIP: svelte menu

This commit is contained in:
kharhamel 2021-07-12 17:39:16 +02:00
parent 41a1f56bd5
commit fecbc8a018
18 changed files with 623 additions and 198 deletions

View file

@ -170,7 +170,7 @@ function createVideoConstraintStore() {
setFrameRate: (frameRate: number) =>
update((constraints) => {
constraints.frameRate = { ideal: frameRate };
localUserStore.setVideoQualityValue(frameRate);
return constraints;
}),
};

View file

@ -1,3 +1,4 @@
import { derived, writable, Writable } from "svelte/store";
export const menuIconVisible = writable(false);
export const menuVisible = writable(false);