Skip to content

Commit

Permalink
remove btn-min
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleBing committed Apr 28, 2024
1 parent c036e64 commit 85d6519
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions js/class/Engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -797,14 +797,10 @@ define(
let minute = Math.floor(secondAll / 60);
let second = Math.floor(secondAll % 60);
$('.minute').innerText = minute >= 10 ? minute : `0${minute}`;
$('.btn-minute').innerText = minute >= 10 ? minute : `0${minute}`;
$('.second').innerText = second >= 10 ? second : `0${second}`;
$('.btn-second').innerText = second >= 10 ? second : `0${second}`;
} else {
$('.minute').innerText = '00';
$('.btn-minute').innerText = '00';
$('.second').innerText = '00';
$('.btn-second').innerText = '00';
}
}

Expand Down

0 comments on commit 85d6519

Please sign in to comment.