Skip to content

Commit

Permalink
Merge pull request #15 from nalbam/main
Browse files Browse the repository at this point in the history
fix mp3
  • Loading branch information
nalbam authored Oct 10, 2023
2 parents aaefde2 + c9fad96 commit 7abe6b8
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file added public/sounds/ding1.mp3
Binary file not shown.
Binary file removed public/sounds/ding1.wav
Binary file not shown.
Binary file added public/sounds/ding2.mp3
Binary file not shown.
Binary file removed public/sounds/ding2.wav
Binary file not shown.
4 changes: 2 additions & 2 deletions public/timer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class Timer {
this.clear();
}

ding1 = new Audio('/sounds/ding1.wav');
ding2 = new Audio('/sounds/ding2.wav');
ding1 = new Audio('/sounds/ding1.mp3');
ding2 = new Audio('/sounds/ding2.mp3');

start() {
if (!this.time) {
Expand Down

0 comments on commit 7abe6b8

Please sign in to comment.