Skip to content

Commit

Permalink
Fix keyboard arrow issue on FF Windows (fixes tiff#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiff committed Dec 28, 2012
1 parent 34ebe36 commit 6b62793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ wysihtml5.browser = (function() {
* Firefox on OSX navigates through history when hitting CMD + Arrow right/left
*/
hasHistoryIssue: function() {
return isGecko;
return isGecko && navigator.platform.substr(0, 3) === "Mac";
},

/**
Expand Down

0 comments on commit 6b62793

Please sign in to comment.