Skip to content

Commit

Permalink
Resolve #494 (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyMartynov committed Oct 18, 2019
1 parent 433e749 commit ad099f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AjaxControlToolkit/Scripts/ListSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ Sys.Extended.UI.ListSearchBehavior.prototype = {
// Returns true if the specified charCode is a key rather than a normal (displayable) character

// Walking through Sys.UI.Keys won't work -- Ampersand is code 38 which matches
if(Sys.Browser.agent == Sys.Browser.Firefox && e.rawEvent.keyCode)
if(Sys.Browser.agent == Sys.Browser.Firefox && Sys.Browser.version < 66 && e.rawEvent.keyCode)
return false;

if(Sys.Browser.agent == Sys.Browser.Opera && e.rawEvent.which == 0)
Expand Down
Loading

0 comments on commit ad099f5

Please sign in to comment.