fix timer: chime resets with currentTime=0 instead of fastSeek(0) now

This commit is contained in:
Iris Lightshard 2019-11-20 10:26:16 -05:00
parent 9f7e0efc61
commit 61e0bde688

View file

@ -122,7 +122,7 @@ timer.start = function()
$("#startStop").val("Reset");
$("#timerPause").attr("disabled", false);
$("#timerPause").val("Pause");
document.getElementById("chime").fastSeek(0);
document.getElementById("chime").currentTime=0;
}
timer.stop = function()
@ -138,7 +138,7 @@ timer.stop = function()
$("#startStop").val("Start");
$("#timerPause").attr("disabled", true);
document.getElementById("chime").pause();
document.getElementById("chime").fastSeek(0);
document.getElementById("chime").currentTime=0;
}
timer.pause = function()