Do not redefine the browser history navigation keys Alt-Left and Alt-Right

Bug: T174055
Change-Id: I1e2acb927dfcc0799b78b2dc045c0208246ba111
This commit is contained in:
Fomafix 2017-08-24 19:58:13 +02:00
parent a997fd8f36
commit ae8696fea6

View file

@ -367,7 +367,10 @@
// select mediawiki as text input mode
mode: 'text/mediawiki',
extraKeys: {
Tab: false
Tab: false,
// T174055: Do not redefine the browser history navigation keys
'Alt-Left': false,
'Alt-Right': false
}
} );
$codeMirror = $( codeMirror.getWrapperElement() );