Skip to content

Commit deda48e

Browse files
author
Olivier Poitrey
committed
Fix validator removing other keyup listeners on inputs after reset (fix jquerytools#390)
1 parent 46b8662 commit deda48e

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
@@ -382,7 +382,7 @@
382382
msg.remove();
383383
$(this).data("msg.el", null);
384384
}
385-
}).unbind(conf.errorInputEvent || '');
385+
}).unbind(conf.errorInputEvent + '.v' || '');
386386
return self;
387387
},
388388

0 commit comments

Comments
 (0)