mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-18 03:13:46 +00:00
10 lines
267 B
JavaScript
10 lines
267 B
JavaScript
window.addEventListener("load", () => {
|
|
const uri = document.getElementById("qrCodeData").getAttribute('data-url');
|
|
new QRCode(document.getElementById("qrCode"),
|
|
{
|
|
text: uri,
|
|
width: 150,
|
|
height: 150
|
|
});
|
|
});
|