mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-09 03:45:39 +00:00
19 lines
435 B
JavaScript
19 lines
435 B
JavaScript
(function( factory ) {
|
|
if ( typeof define === "function" && define.amd ) {
|
|
define( ["jquery", "../jquery.validate"], factory );
|
|
} else {
|
|
factory( jQuery );
|
|
}
|
|
}(function( $ ) {
|
|
|
|
/*
|
|
* Localized default methods for the jQuery validation plugin.
|
|
* Locale: NL
|
|
*/
|
|
$.extend($.validator.methods, {
|
|
date: function(value, element) {
|
|
return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value);
|
|
}
|
|
});
|
|
|
|
})); |