mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-13 18:36:57 +00:00
089b73aa5d
* Moved test resource to the modules folder and registered it * Fixed tests file to use $ not $j * Cleaned up syntax in module definitions
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
/*
|
|
* JavaScript for WikiEditor Highlighting
|
|
*/
|
|
|
|
$( document ).ready( function() {
|
|
// Add highlight module
|
|
$( '#wpTextbox1' ).wikiEditor( 'addModule', 'highlight' );
|
|
} );
|