summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/WikiEditor/modules/ext.wikiEditor.toolbar.js
blob: 0c38d40e59a90cc45f8bbc7a35f4888d50822ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * JavaScript for WikiEditor Toolbar
 */
jQuery( function ( $ ) {
	// The old toolbar is still in place and needs to be removed so there aren't two toolbars
	$( '#toolbar' ).remove();
	// Add toolbar module
	// TODO: Implement .wikiEditor( 'remove' )
	$( '#wpTextbox1' ).wikiEditor(
		'addModule', $.wikiEditor.modules.toolbar.config.getDefaultConfig()
	);
} );