Fix bug with "Addresses per page" == 1

It was effectively "don't insert any pagebreaks" because the modulus
condition could never be true.
This commit is contained in:
Joey Hewitt 2013-04-08 21:08:01 -06:00
parent 2478a1369f
commit bda4b469f1

View file

@ -6466,7 +6466,7 @@
}
if (paperArea.innerHTML != "") {
// page break
if (i % pageBreakAt == 1 && ninja.wallets.paperwallet.count >= pageBreakAt) {
if ((i-1) % pageBreakAt == 0 && i >= pageBreakAt) {
var pBreak = document.createElement("div");
pBreak.setAttribute("class", "pagebreak");
document.getElementById("paperkeyarea").appendChild(pBreak);