Skip to content

Commit

Permalink
Merge pull request #175 from pravee-n/bug45149
Browse files Browse the repository at this point in the history
Fixed Bug 45149 (Issue #174)

Tested on Windows and Linux. Thanks for the patch.
  • Loading branch information
amire80 committed May 18, 2013
2 parents adc9aea + 06b76e1 commit b4c6038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.ime.selector.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@
function isShortcutKey ( event ) {
// 77 - The letter M, for Ctrl-M
// 13 - The Enter key
return event.ctrlKey && ( event.which === 77 || event.which === 13 );
return event.ctrlKey && !event.altKey && ( event.which === 77 || event.which === 13 );
}

function isDOMAttrModifiedSupported () {
Expand Down

0 comments on commit b4c6038

Please sign in to comment.