Explorar el Código

modify password field

andre hace 4 años
padre
commit
fe91714eb6
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      check_configure_thurvserver.tpl

+ 2 - 2
check_configure_thurvserver.tpl

@@ -85,11 +85,11 @@
     function toggleViewPW(element) {
         if (element.previousElementSibling.type == 'password') {
             element.previousElementSibling.type = 'text';
-            element.textContent = "👁 Passwort verstecken";
+            element.textContent = '👁 Passwort verstecken';
         }
         if (element.previousElementSibling.type == 'text') {
             element.previousElementSibling.type = 'password';
-            element.textContent = "👁 Passwort anzeigen";
+            element.textContent = '👁 Passwort anzeigen';
         }
     }
 </script>