mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
when the answer time is disabled, blank it out
This commit is contained in:
parent
ba8108c54c
commit
4e4c22a233
1 changed files with 1 additions and 0 deletions
|
@ -434,6 +434,7 @@ setInterval(function () { time += 1; updateTime() }, 1000);
|
||||||
|
|
||||||
var updateTime = function () {
|
var updateTime = function () {
|
||||||
if (!maxTime) {
|
if (!maxTime) {
|
||||||
|
$("#time").text("");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
time = Math.min(maxTime, time);
|
time = Math.min(maxTime, time);
|
||||||
|
|
Loading…
Reference in a new issue