Blame view

framework/thirdparty/jquery-validate/localization/methods_pt.js 246 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
  /*
   * Localized default methods for the jQuery validation plugin.
   * Locale: PT_BR
   */
  jQuery.extend(jQuery.validator.methods, {
  	date: function(value, element) {
  		return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
  	}
  });