mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
es.ButtonTool = function( toolbar, name ) {
|
|
es.Tool.call( this, toolbar );
|
|
if ( !name ) {
|
|
return;
|
|
}
|
|
var _this = this;
|
|
|
|
this.$.addClass( 'es-toolbarButtonTool' )
|
|
.addClass( 'es-toolbarButtonTool-' + name )
|
|
.attr( 'title', name );
|
|
|
|
this.$.click( function ( e ) {
|
|
_this.onClick( e );
|
|
} );
|
|
};
|
|
|
|
es.ButtonTool.prototype.onClick = function( e ) {
|
|
};
|
|
|
|
es.extendClass( es.ButtonTool, es.Tool ); |