commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / bower_components / jquery-validation / src / additional / giroaccountNL.js
1 /**
2 * Dutch giro account numbers (not bank numbers) have max 7 digits
3 */
4 $.validator.addMethod("giroaccountNL", function(value, element) {
5 return this.optional(element) || /^[0-9]{1,7}$/.test(value);
6 }, "Please specify a valid giro account number");