Skip to content

Commit 1451ce6

Browse files
committed
bug fixed: s undefined
1 parent 8bc443f commit 1451ce6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jquery-validator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
filter: function($dom, context){
5252
var s = this.skip;
53-
if ( f > 0 && (
53+
if ( s > 0 && (
5454
(s & 1) === 1 && !$dom.length
5555
|| (s & 2) === 2 && !$dom.is(':visible')
5656
|| (s & 4) === 4 && $dom.is('[readonly]'))

0 commit comments

Comments
 (0)