Skip to content

Commit

Permalink
Events: Fixing keyboard events for older safari 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Archibald committed Jun 11, 2010
1 parent 5329aa9 commit d447031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events/KeyboardEvent.js
Expand Up @@ -183,7 +183,7 @@ Glow.provide(function(glow) {
var keyName;

// for browsers that fire keypress for the majority of keys
if (env.gecko || env.opera) {
if (env.gecko || env.opera || env.webkit < 525) {
return !noKeyPress[keyCode];
}

Expand Down

0 comments on commit d447031

Please sign in to comment.