Skip to content

Commit

Permalink
return return vaule in key filter wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Mar 24, 2014
1 parent d2cf1de commit c4550f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ filters.key = function (handler, key) {
}
return function (e) {
if (e.keyCode === code) {
handler.call(this, e)
return handler.call(this, e)
}
}
}
Expand Down

0 comments on commit c4550f7

Please sign in to comment.