mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-23 13:56:44 +00:00
Merge "Add accesskey to CodeMirror input field"
This commit is contained in:
commit
05241f1259
|
@ -167,8 +167,11 @@
|
|||
lang: $textbox1.attr( 'lang' )
|
||||
} );
|
||||
|
||||
// T194102: UniversalLanguageSelector integration is buggy, disabling it completely
|
||||
$( codeMirror.getInputField() ).addClass( 'noime' );
|
||||
$( codeMirror.getInputField() )
|
||||
// T259347: Use accesskey of the original textbox
|
||||
.attr( 'accesskey', $textbox1.attr( 'accesskey' ) )
|
||||
// T194102: UniversalLanguageSelector integration is buggy, disabling it completely
|
||||
.addClass( 'noime' );
|
||||
|
||||
// set the height of the textarea
|
||||
codeMirror.setSize( null, $textbox1.height() );
|
||||
|
|
Loading…
Reference in a new issue