Skip to content

Commit 50bf1b5

Browse files
author
Duc Tri Le
committed
Merge pull request jquerytools#624 from rs/validator-unbind
Fix validator removing other keyup listeners on inputs after reset (fix jquerytools#390)
2 parents 9a6b3fb + deda48e commit 50bf1b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validator/validator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@
381381
msg.remove();
382382
$(this).data("msg.el", null);
383383
}
384-
}).unbind(conf.errorInputEvent || '');
384+
}).unbind(conf.errorInputEvent + '.v' || '');
385385
return self;
386386
},
387387

0 commit comments

Comments
 (0)