aboutsummaryrefslogtreecommitdiffstats
path: root/assets/js/validator.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/validator.js')
-rw-r--r--assets/js/validator.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/js/validator.js b/assets/js/validator.js
new file mode 100644
index 0000000..2e8bb2b
--- /dev/null
+++ b/assets/js/validator.js
@@ -0,0 +1,17 @@
+(function() {
+ 'use strict';
+ window.addEventListener('load', function() {
+ // Fetch all the forms we want to apply custom Bootstrap validation styles to
+ var forms = document.getElementsByClassName('needs-validation');
+ // Loop over them and prevent submission
+ var validation = Array.prototype.filter.call(forms, function(form) {
+ form.addEventListener('submit', function(event) {
+ if (form.checkValidity() === false) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+ form.classList.add('was-validated');
+ }, false);
+ });
+ }, false);
+})();