We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2830ec commit 04ea6a5Copy full SHA for 04ea6a5
2 files changed
resources/ext/js/multi.js
@@ -48,7 +48,7 @@ function loadShare(share) {
48
function loadArgs() {
49
var root = window.location.href;
50
var start = root.indexOf("?");
51
- if (start == 0) {
+ if (start <= 0) {
52
return;
53
}
54
resources/index.html
@@ -63,7 +63,7 @@ <h3>SELECT BARCODE TYPE</h3>
63
<br /> <input type="checkbox" id="option-trim-after" onchange="optionsChange()"
64
checked /> Trim After
65
<br /><span>Key</span> <input type="password" id="option-api-key" size="12"
66
- maxlength="12" onchange="optionsChange()" />
+ maxlength="32" onchange="optionsChange()" />
67
</div>
68
69
<div>
0 commit comments