Skip to content

Commit

Permalink
bug fixed: s undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
CodePlayer committed Jan 12, 2022
1 parent 8bc443f commit 1451ce6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jquery-validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

filter: function($dom, context){
var s = this.skip;
if ( f > 0 && (
if ( s > 0 && (
(s & 1) === 1 && !$dom.length
|| (s & 2) === 2 && !$dom.is(':visible')
|| (s & 4) === 4 && $dom.is('[readonly]'))
Expand Down
Loading

0 comments on commit 1451ce6

Please sign in to comment.