mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
19 lines
426 B
JavaScript
19 lines
426 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: PT_BR
|
||
|
*/
|
||
|
$.extend($.validator.methods, {
|
||
|
date: function(value, element) {
|
||
|
return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}));
|