|
|
@@ -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!');
|
|
|
}
|
|
|
});
|
|
|
});
|