diff --git a/ver_formulario_enviado.php b/ver_formulario_enviado.php index 40a3a41..5dafd3c 100644 --- a/ver_formulario_enviado.php +++ b/ver_formulario_enviado.php @@ -2550,9 +2550,13 @@ const topaz = (() => { }); } - // Detectar disponibilidad al cargar; ocultar botones si no hay pad + // Detectar disponibilidad al cargar; ocultar botones si no hay pad, o marcar en línea _loadScript().then(ok => { - if (!ok) document.querySelectorAll('.btn-topaz').forEach(b => b.style.display = 'none'); + document.querySelectorAll('.btn-topaz').forEach(b => { + if (!ok) { b.style.display = 'none'; return; } + b.innerHTML = '' + + 'Tableta en línea'; + }); }); function _toast(msg) {