initial upload
This commit is contained in:
22
monaem/static/dist/jqueryvalidation/localization/methods_de.js
vendored
Normal file
22
monaem/static/dist/jqueryvalidation/localization/methods_de.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
(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: DE
|
||||
*/
|
||||
$.extend($.validator.methods, {
|
||||
date: function(value, element) {
|
||||
return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);
|
||||
},
|
||||
number: function(value, element) {
|
||||
return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);
|
||||
}
|
||||
});
|
||||
|
||||
}));
|
||||
Reference in New Issue
Block a user