mirror of
https://github.com/silverstripe/silverstripe-comments
synced 2024-10-22 11:05:49 +02:00
468df23801
Update theme to new look and feel Add jquery-validate 1.3.1 (w/ nz dst patch)
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);
|
|
}
|
|
});
|
|
|
|
})); |