9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
window.addEventListener("load", () => {
|
|
const uri = document.getElementById("qrCodeData").getAttribute('data-url');
|
|
new QRCode(document.getElementById("qrCode"),
|
|
{
|
|
text: uri,
|
|
width: 150,
|
|
height: 150
|
|
});
|
|
}); |