Skip to content

Commit

Permalink
fix(): remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
timaramazanov committed Jun 4, 2024
1 parent bf08035 commit 79d1349
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/components/video-container/Video-container.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ export class VideoContainer extends LitElement {

@listen(Types.Command.seek, { canPlay: true })
seek({ time }: { time: number }) {
console.log('GOING TO SEEK!!!')
const [video] = this.videos;
video.currentTime = time;
if (video.paused && !this.castActivated) this.play();
Expand Down Expand Up @@ -343,7 +342,6 @@ export class VideoContainer extends LitElement {
});
break;
case "loadeddata":
console.log('LOADED DATA!')
dispatch(this, Types.Action.updateDuration, {
initialized: true,
duration: getVideoDuration(video),
Expand Down Expand Up @@ -374,7 +372,6 @@ export class VideoContainer extends LitElement {
dispatch(this, Types.Action.togglePip, { pipActivated: false });
break;
case "loadedmetadata":
console.log('LOADED META DATA!')
dispatch(this, Types.Action.canPlay);
break;
case "error":
Expand Down

0 comments on commit 79d1349

Please sign in to comment.