Skip to content

Commit

Permalink
Merge pull request #1 from Landish/patch-1
Browse files Browse the repository at this point in the history
IE 6-9 Bug Fix
  • Loading branch information
jayarjo committed Nov 5, 2012
2 parents 72dc59a + cc90c2b commit 60706c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.geokbd.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ $.fn.geokbd = function(options) {

if (ch != kach) {
if ($.browser.msie) {
window.event.keyCode = kaText.charCodeAt(0);
window.event.keyCode = kach.charCodeAt(0);
} else {
pasteTo.call(kach, e.target);
e.preventDefault();
Expand Down

0 comments on commit 60706c2

Please sign in to comment.