Files
2024-03-08 07:51:57 +01:00

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
});
});