Skip to content

Commit

Permalink
fixed drgullin#18
Browse files Browse the repository at this point in the history
  • Loading branch information
damirfoy committed Apr 17, 2013
1 parent 8f41e9d commit f4fbf9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jquery.icheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
return false;

// Keyup
} else if (node[_type] == _radio) {
} else if (type == 'keyup' && node[_type] == _radio) {
!node[_checked] && on(self, _checked);

// Focus state
Expand Down
2 changes: 1 addition & 1 deletion jquery.icheck.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion zepto.icheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
return false;

// Keyup
} else if (node[_type] == _radio) {
} else if (type == 'keyup' && node[_type] == _radio) {
!node[_checked] && on(self, _checked);

// Focus state
Expand Down
2 changes: 1 addition & 1 deletion zepto.icheck.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f4fbf9b

Please sign in to comment.