Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AltGr+M doesn't create a µ #174

Closed
siebrand opened this issue May 10, 2013 · 0 comments
Closed

AltGr+M doesn't create a µ #174

siebrand opened this issue May 10, 2013 · 0 comments

Comments

@siebrand
Copy link
Member

Logged at https://bugzilla.wikimedia.org/45149. There's also some code there: http://bug-attachment.wikimedia.org/attachment.cgi?id=11811

Diff is small, so copying it here:

diff --git a/lib/jquery.ime/jquery.ime.js b/lib/jquery.ime/jquery.ime.js
index 670aa93..f5918e2 100644
--- a/lib/jquery.ime/jquery.ime.js
+++ b/lib/jquery.ime/jquery.ime.js
@@ -924,7 +924,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 () {

amire80 added a commit that referenced this issue May 18, 2013
Fixed Bug 45149 (Issue #174)

Tested on Windows and Linux. Thanks for the patch.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants