mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-28 01:50:09 +00:00
Fix navigation issue with alt+esc on Ubuntu/Unity.
Bug: 62580 Change-Id: Ib2c8e21ee05000f7582f6e478034664c8be881e5
This commit is contained in:
parent
652094039f
commit
e8c099f3b7
|
@ -146,7 +146,7 @@
|
|||
}
|
||||
|
||||
this.handleEvent( 'keyup', function ( e ) {
|
||||
if ( e.keyCode === 27 ) {
|
||||
if ( e.keyCode === 27 && !( e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) ) {
|
||||
// Escape button pressed
|
||||
ui.unattach();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue