Sfoglia il codice sorgente

new check_configure_kerio_buisness_mail.tpl

andre 6 mesi fa
parent
commit
e57d945466
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. 4 3
      check_configure_kerio_buisness_mail.tpl

+ 4 - 3
check_configure_kerio_buisness_mail.tpl

@@ -49,6 +49,7 @@
         checkBoxHelper = $("*[class^='iCheck-helper']");
         checkBox = $("*[id^='iCheck-customfield']")
         $("#btnCompleteProductConfig").prop("disabled",true);
+        $("#hint").text('Bitte wählen Sie Ihre Maildomain und akzeptieren Sie die erweiterten Nutzungsbedingungen!');
         $(customFields[0]).val(''); // domain
         $(checkBox[0]).removeClass('checked'); // checkbox
         $(customFields[0]).blur(function () {
@@ -57,7 +58,7 @@
                     checkInput( $(customFields[0]).val().trim(), {$productinfo['pid']});
                 }, 1);
             } else {
-                    console.log('onBlur');
+                $("#hint").text('Ungültiger Domainname!');
             }
         });
         $(customFields[0]).on('input', function () {
@@ -66,7 +67,7 @@
                     checkInput( $(customFields[0]).val().trim(), {$productinfo['pid']});
                 }, 1);
             } else {
-                    console.log('onInput');
+                $("#hint").text('Ungültiger Domainname!');
             }
         });
         $(checkBoxHelper[0]).click(function () {
@@ -75,7 +76,7 @@
                     checkInput( $(customFields[0]).val().trim(), {$productinfo['pid']});
                 }, 1);
             } else {
-                    console.log('onClick');
+                $("#hint").text('Ungültiger Domainname!');
             }
         });
     });