mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
integer count in overview
This commit is contained in:
parent
02bc090828
commit
a1db3e56a7
1 changed files with 2 additions and 1 deletions
|
@ -91,7 +91,8 @@ $(function () {
|
||||||
$.plot($("#placeholder"), [
|
$.plot($("#placeholder"), [
|
||||||
{ data: d, bars: { show: true, barWidth: 0.8 }, color: "#0c0" }
|
{ data: d, bars: { show: true, barWidth: 0.8 }, color: "#0c0" }
|
||||||
], {
|
], {
|
||||||
xaxis: { ticks: [[0.4, "Today"]] }
|
xaxis: { ticks: [[0.4, "Today"]] },
|
||||||
|
yaxis: { tickDecimals: 0 }
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$("#placeholder").text(d);
|
$("#placeholder").text(d);
|
||||||
|
|
Loading…
Reference in a new issue