From 3e12c7956a9a16c575c67f6b2a5fa10be7d16b37 Mon Sep 17 00:00:00 2001 From: Bengt Brodersen Date: Fri, 11 Dec 2015 11:30:09 +0100 Subject: [PATCH] minor fixes --- bookmarklet.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bookmarklet.js b/bookmarklet.js index ce69a3a..daecbf6 100644 --- a/bookmarklet.js +++ b/bookmarklet.js @@ -70,7 +70,7 @@ if (issueKeyList.length <= 0) { alert("Please select at least one issue."); return; - } else if (issueKeyList.length > 100) { + } else if (issueKeyList.length > 30) { confirm("Are you sure you want select " + issueKeyList.length + " issues?"); return; } @@ -233,6 +233,7 @@ }); console.log("wait for resources loaded..."); printDocument.close(); + redrawCards(); }); } @@ -472,7 +473,7 @@ // show QR Code result.find("#qr-code-checkbox").click(function() { - global.settings.hideQrCode = this.checked; + global.settings.hideQrCode = !this.checked; saveSettings(); redrawCards(); return true;