You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
426 B
19 lines
426 B
3 years ago
|
(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: PT_BR
|
||
|
*/
|
||
|
$.extend($.validator.methods, {
|
||
|
date: function(value, element) {
|
||
|
return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}));
|