forked from ankitects/anki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviewer-bottom.js
43 lines (39 loc) · 902 Bytes
/
reviewer-bottom.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var time; // set in python code
var maxTime = 0;
$(function () {
$("#ansbut").focus();
updateTime();
setInterval(function () {
time += 1;
updateTime()
}, 1000);
});
var updateTime = function () {
var timeNode = $("#time");
if (!maxTime) {
timeNode.text("");
return;
}
time = Math.min(maxTime, time);
var m = Math.floor(time / 60);
var s = time % 60;
if (s < 10) {
s = "0" + s;
}
if (maxTime === time) {
timeNode.html("<font color=red>" + m + ":" + s + "</font>");
} else {
timeNode.text(m + ":" + s);
}
};
function showQuestion(txt, maxTime_) {
// much faster than jquery's .html()
$("#middle")[0].innerHTML = txt;
$("#ansbut").focus();
time = 0;
maxTime = maxTime_;
}
function showAnswer(txt) {
$("#middle")[0].innerHTML = txt;
$("#defease").focus();
}