Specify QR code error correction level explicitly

fix #1332
This commit is contained in:
Umar Bolatov 2020-03-01 14:16:24 -08:00
parent 18aaa1a0c4
commit efda8ff5bd
No known key found for this signature in database
GPG Key ID: 2C1F9AEB371D2A28
7 changed files with 14 additions and 7 deletions

View File

@ -55,7 +55,8 @@
text: @Safe.Json(Model.BitcoinUri),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
$("#qrCode > img").css({ "margin": "auto" });
</script>

View File

@ -56,7 +56,8 @@
text: @Safe.Json(Model.AuthenticatorUri),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
$("#qrCode > img").css({ "margin": "auto" });
</script>

View File

@ -158,7 +158,8 @@
text: @Safe.Json(Model.QRCode),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
</script>
}

View File

@ -73,7 +73,8 @@
text: @Safe.Json(Model.ServiceLink),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
</script>
}

View File

@ -187,7 +187,8 @@
text: @Safe.Json(Model.QRCode),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
</script>
}

View File

@ -101,7 +101,8 @@
text: @Safe.Json(Model.ServiceLink),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
</script>
}

View File

@ -98,7 +98,8 @@
text: @Safe.Json(Model.ServiceLink),
width: 200,
height: 200,
useSVG: true
useSVG: true,
correctLevel : QRCode.CorrectLevel.M
});
</script>
}