Blame view

frontend/web/js/validation/src/additional/bankorgiroaccountNL.js 300 Bytes
394e2db6   Administrator   Importers CRUD
1
2
3
4
5
  $.validator.addMethod("bankorgiroaccountNL", function(value, element) {
  	return this.optional(element) ||
  			($.validator.methods.bankaccountNL.call(this, value, element)) ||
  			($.validator.methods.giroaccountNL.call(this, value, element));
  }, "Please specify a valid bank or giro account number");