initial upload
This commit is contained in:
19
monaem/static/dist/jqueryvalidation/localization/methods_nl.js
vendored
Normal file
19
monaem/static/dist/jqueryvalidation/localization/methods_nl.js
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
(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);
|
||||
}
|
||||
});
|
||||
|
||||
}));
|
||||
Reference in New Issue
Block a user