We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c1663d + 11d1bdb commit 3e8a59fCopy full SHA for 3e8a59f
qrcode.js
@@ -205,7 +205,7 @@ var QRCode;
205
for (var row = 0; row < nCount; row++) {
206
for (var col = 0; col < nCount; col++) {
207
if (oQRCode.isDark(row, col)) {
208
- var child = makeSVG("use", {"x": String(row), "y": String(col)});
+ var child = makeSVG("use", {"x": String(col), "y": String(row)});
209
child.setAttributeNS("http://www.w3.org/1999/xlink", "href", "#template")
210
svg.appendChild(child);
211
}
0 commit comments