PageRenderTime 52ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/jquery-validate/localization/methods_pt.js

#
JavaScript | 9 lines | 5 code | 0 blank | 4 comment | 1 complexity | 09b350c9c069b5a82d5811339ac15ab6 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. /*
  2. * Localized default methods for the jQuery validation plugin.
  3. * Locale: PT_BR
  4. */
  5. jQuery.extend(jQuery.validator.methods, {
  6. date: function(value, element) {
  7. return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
  8. }
  9. });