mediawiki-extensions-Visual.../modules/ve/ui/tools/ve.ui.ClearButtonTool.js
Trevor Parscal 519d225d2f Cleanup of white space, missing semi-colons, line breaks, etc.
Change-Id: Ifa96a9f70fa8d149a4c403521aaa88a3e0546ef0
2012-04-02 15:28:26 -07:00

51 lines
1.2 KiB
JavaScript

/**
* Creates an ve.ui.ClearButtonTool object.
*
* @class
* @constructor
* @extends {ve.ui.ButtonTool}
* @param {ve.ui.Toolbar} toolbar
* @param {String} name
*/
ve.ui.ClearButtonTool = function( toolbar, name, title ) {
// Inheritance
ve.ui.ButtonTool.call( this, toolbar, name, title );
// Properties
this.$.addClass( 'es-toolbarButtonTool-disabled' );
this.pattern = /(textStyle\/|link\/).*/;
};
/* Methods */
ve.ui.ClearButtonTool.prototype.onClick = function() {
var surfaceView = this.toolbar.getSurfaceView();
surfaceView.annotate( 'clear', this.pattern );
surfaceView.clearInsertionAnnotations();
surfaceView.contextView.closeInspector();
};
ve.ui.ClearButtonTool.prototype.updateState = function( annotations ) {
var matchingAnnotations = ve.dm.DocumentNode.getMatchingAnnotations(
annotations.all, this.pattern
);
if ( matchingAnnotations.length === 0 ) {
this.$.addClass( 'es-toolbarButtonTool-disabled' );
} else {
this.$.removeClass( 'es-toolbarButtonTool-disabled' );
}
};
/* Registration */
ve.ui.Tool.tools.clear = {
'constructor': ve.ui.ClearButtonTool,
'name': 'clear',
'title': 'Clear formatting'
};
/* Inheritance */
ve.extendClass( ve.ui.ClearButtonTool, ve.ui.ButtonTool );