PAGES.index = { //navcss: "btn1", Title: "Inicio", index: function() { container.innerHTML = `

¡Hola, ${SUB_LOGGED_IN_DETAILS.Nombre}!
Bienvenidx a %%TITLE%%

Utiliza el menú superior para abrir un modulo

`; }, edit: function(mid) { var qrscan = safeuuid() container.innerHTML = `

Escanear QR



`; var html5QrcodeScanner = new Html5QrcodeScanner( qrscan, { fps: 10, qrbox: 250 }); function onScanSuccess(decodedText, decodedResult) { // Handle on success condition with the decoded text or result. // alert(`Scan result: ${decodedText}`, decodedResult); setUrlHash(decodedText) // ... html5QrcodeScanner.clear(); // ^ this will stop the scanner (video feed) and clear the scan area. } html5QrcodeScanner.render(onScanSuccess); } }