mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
/**
|
|
* Creates an es.IndentationButtonTool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {es.ButtonTool}
|
|
* @param {es.ToolbarView} toolbar
|
|
* @param {String} name
|
|
*/
|
|
es.IndentationButtonTool = function( toolbar, name, data ) {
|
|
es.ButtonTool.call( this, toolbar, name );
|
|
this.data = data;
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
es.IndentationButtonTool.prototype.onClick = function() {
|
|
if ( !this.$.hasClass( 'es-toolbarButtonTool-disabled' ) ) {
|
|
alert( 'This functionality is not yet supported.' );
|
|
}
|
|
};
|
|
|
|
es.IndentationButtonTool.prototype.updateState = function( annotations, nodes ) {
|
|
function areListItems( nodes ) {
|
|
for( var i = 0; i < nodes.length; i++ ) {
|
|
if ( nodes[i].getParent().getElementType() !== 'listItem' ) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if ( areListItems( nodes ) ) {
|
|
this.$.removeClass( 'es-toolbarButtonTool-disabled' );
|
|
} else {
|
|
this.$.addClass( 'es-toolbarButtonTool-disabled' );
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
es.Tool.tools.indent = {
|
|
constructor: es.IndentationButtonTool,
|
|
name: 'indent'
|
|
};
|
|
|
|
es.Tool.tools.outdent = {
|
|
constructor: es.IndentationButtonTool,
|
|
name: 'outdent'
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
es.extendClass( es.IndentationButtonTool, es.ButtonTool ); |