Skip to content

Commit

Permalink
Don't use global window.event, Firefox does not support this
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegal committed Feb 10, 2012
1 parent bad8930 commit 60ba09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/default/fulldoc/html/js/full_list.js
Expand Up @@ -21,7 +21,7 @@ function fullListSearch() {
searchCache.push({name:link.text(), fullName:fullName, node:$(this), link:link});
});

$('#search input').keyup(function() {
$('#search input').keyup(function(event) {
if ((event.keyCode > ignoreKeyCodeMin && event.keyCode < ignoreKeyCodeMax)
|| event.keyCode == commandKey)
return;
Expand Down

0 comments on commit 60ba09f

Please sign in to comment.