mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
remove console log
This commit is contained in:
@@ -16,8 +16,6 @@ export function Modal() {
|
||||
|
||||
const {firstColor, secondColor} = useThemeColor();
|
||||
|
||||
console.log(ModalComponent, resolver);
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
const onEscape = (e: KeyboardEvent) => {
|
||||
|
||||
@@ -25,8 +25,6 @@ export class AudioPlayerService{
|
||||
|
||||
this.config = ConfigurationService.getInstance();
|
||||
|
||||
console.log("BBB", this.config.get<PlayerVolume>("audio-level"));
|
||||
|
||||
this._volume$ = new BehaviorSubject(
|
||||
this.config.get<PlayerVolume>("audio-level") || { volume: 0.5, muted: false }
|
||||
);
|
||||
@@ -40,7 +38,6 @@ export class AudioPlayerService{
|
||||
this.player.onended = () => this._playing$.next(false);
|
||||
|
||||
this._volume$.subscribe(volume => {
|
||||
console.log("AAA", volume);
|
||||
this.player.volume = volume.volume;
|
||||
this.player.muted = volume.muted;
|
||||
this.config.set("audio-level", volume);
|
||||
|
||||
Reference in New Issue
Block a user