mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-14 19:31:55 +00:00
12 lines
336 B
JavaScript
12 lines
336 B
JavaScript
/*
|
|
* JavaScript for WikiEditor Table of Contents
|
|
*/
|
|
|
|
$( document ).ready( function() {
|
|
// Add table of contents module
|
|
$( '#wpTextbox1' )
|
|
.wikiEditor( 'addModule', 'toc' );
|
|
// FIXME - should move the ready handler code to the create function so this isn't necissary
|
|
//.data( 'wikiEditor-context' ).fn.trigger( 'ready' );
|
|
} );
|