mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-15 02:04:02 +00:00
Do not redefine the browser history navigation keys Alt-Left and Alt-Right
Bug: T174055 Change-Id: I1e2acb927dfcc0799b78b2dc045c0208246ba111
This commit is contained in:
parent
a997fd8f36
commit
ae8696fea6
|
@ -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() );
|
||||
|
|
Loading…
Reference in a new issue