This commit is contained in:
naielv
2025-08-27 13:47:23 +02:00
parent 14c081a615
commit 34b27b15ba
3 changed files with 1035 additions and 9 deletions

View File

@@ -988,13 +988,7 @@ function TS_IndexElement(
}
function BuildQR(mid) {
var svg = QRCode({
msg: mid,
pad: 2,
dim: 150
}).outerHTML;
return `<span style="display: inline-block; height: 150px; width: 150px; background-color: white;">${svg}</span>`
return toHtml(aztec(mid),[2,2]);
}
var PAGES = {};