mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-14 19:31:55 +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
173 B
JavaScript
9 lines
173 B
JavaScript
/*
|
|
* JavaScript for WikiEditor Publish module
|
|
*/
|
|
|
|
$( document ).ready( function() {
|
|
// Add publish module
|
|
$j( '#wpTextbox1' ).wikiEditor( 'addModule', 'publish' );
|
|
} );
|