http://www.mediawiki.org/wiki/Special:Code/MediaWiki/93572

Revision: 93572
Author:   brion
Date:     2011-07-31 05:14:46 +0000 (Sun, 31 Jul 2011)
Log Message:
-----------
* (bug 30144) Fixed Narayam stealing command shortcut keys on Mac Firefox, 
Safari

Modified Paths:
--------------
    trunk/extensions/Narayam/ext.narayam.core.js

Modified: trunk/extensions/Narayam/ext.narayam.core.js
===================================================================
--- trunk/extensions/Narayam/ext.narayam.core.js        2011-07-31 05:04:20 UTC 
(rev 93571)
+++ trunk/extensions/Narayam/ext.narayam.core.js        2011-07-31 05:14:46 UTC 
(rev 93572)
@@ -186,7 +186,7 @@
                
                // Leave non-ASCII stuff alone, as well as anything involving
                // Alt (except for extended keymaps), Ctrl and Meta
-               if ( e.which < 32 || ( e.altKey && 
!currentScheme.extended_keyboard ) || e.ctrlKey ) {
+               if ( e.which < 32 || ( e.altKey && 
!currentScheme.extended_keyboard ) || e.ctrlKey || e.metaKey ) {
                        return true;
                }
                


_______________________________________________
MediaWiki-CVS mailing list
MediaWiki-CVS@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to