Skip to content

Commit

Permalink
Commented out console logs in VideoJS component
Browse files Browse the repository at this point in the history
  • Loading branch information
Teddybiovlsi committed Mar 19, 2024
1 parent 1546591 commit 15db7c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/VideoJS.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ export const VideoJS = (props) => {
if (type !== 2) {
timer = setInterval(() => {
lastPlayerTime = player.currentTime();
console.log("lastPlayerTime", lastPlayerTime);
console.log("player.currentTime()", player.currentTime());
// console.log("lastPlayerTime", lastPlayerTime);
// console.log("player.currentTime()", player.currentTime());

// store the current time of the video in the cookie
document.cookie = `lastPlayerTime=${lastPlayerTime}`;
Expand Down

0 comments on commit 15db7c3

Please sign in to comment.