mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-15 10:19:27 +00:00
b9f40490f3
* fix some bugs... Change-Id: Icf7eb836c6fbe3a686d67355064f57a6199d6b22
18 lines
552 B
JavaScript
18 lines
552 B
JavaScript
/*global CodeMirror, mw*/
|
|
jQuery( document ).ready( function ( $ ) {
|
|
var textbox1 = $( '#wpTextbox1' );
|
|
var codeMirror = CodeMirror.fromTextArea( textbox1[0], {
|
|
mwextFunctionSynonyms: mw.config.get( 'extCodeMirrorFunctionSynonyms' ),
|
|
mwextTags: mw.config.get( 'extCodeMirrorTags' ),
|
|
styleActiveLine: true,
|
|
//lineNumbers: true,
|
|
lineWrapping: true,
|
|
//indentUnit: 4,
|
|
//indentWithTabs: true
|
|
//matchBrackets: true,
|
|
//autoCloseBrackets: true,
|
|
mode: 'text/mediawiki'
|
|
} );
|
|
codeMirror.setSize( null, textbox1.height() );
|
|
} );
|