mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 07:34:22 +00:00
14 lines
371 B
JavaScript
14 lines
371 B
JavaScript
|
( function ( mw ) {
|
||
|
if ( mw.toolbar ) {
|
||
|
var iconPath = mw.config.get( 'wgExtensionAssetsPath' ) + '/Math/images/';
|
||
|
mw.toolbar.addButton( {
|
||
|
imageFile: iconPath + 'button_math.png',
|
||
|
speedTip: mw.msg( 'math_tip' ),
|
||
|
tagOpen: '<math>',
|
||
|
tagClose: '</math>',
|
||
|
sampleText: mw.msg( 'math_sample' ),
|
||
|
imageId: 'mw-editbutton-math'
|
||
|
} );
|
||
|
}
|
||
|
} ( mediaWiki ) );
|