Skip to content

Instantly share code, notes, and snippets.

@he7d3r
Created September 15, 2014 13:07
Show Gist options
  • Save he7d3r/f3bf05e54cfb1bb7da39 to your computer and use it in GitHub Desktop.
Save he7d3r/f3bf05e54cfb1bb7da39 to your computer and use it in GitHub Desktop.
Disable CodeEditor auto pairing
/*global jQuery, mediaWiki */
( function ( mw, $ ) {
'use strict';
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) === -1 ) {
return;
}
mw.hook( "codeEditor.configure" ).add( function( editorSession ) {
editorSession.setBehavioursEnabled( false );
} );
}( mediaWiki, jQuery ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment