Decrease the correctness level on the QR code.

pull/461/head
Mikunj 6 years ago
parent a89358676c
commit 3d179909c7

@ -19,7 +19,9 @@
);
if (options.string) {
this.qr = new QRCode(this.$('#qr')[0]).makeCode(options.string);
this.qr = new QRCode(this.$('#qr')[0], {
correctLevel: QRCode.CorrectLevel.L,
}).makeCode(options.string);
this.$('#qr').addClass('ready');
}
},

Loading…
Cancel
Save