2015-11-08 17:05:33 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor MWSignatureContextItem class.
|
|
|
|
*
|
2019-01-01 13:24:23 +00:00
|
|
|
* @copyright 2011-2019 VisualEditor Team and others; see http://ve.mit-license.org
|
2015-11-08 17:05:33 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Context item for a MWSignature.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.MWTransclusionContextItem
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.ui.Context} context Context item is in
|
|
|
|
* @param {ve.dm.Model} model Model item is related to
|
|
|
|
* @param {Object} config Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.MWSignatureContextItem = function VeUiMWSignatureContextItem() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWSignatureContextItem.super.apply( this, arguments );
|
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$element.addClass( 've-ui-mwSignatureContextItem' );
|
|
|
|
this.$body.remove();
|
|
|
|
this.$info.remove();
|
|
|
|
this.$actions.remove();
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWSignatureContextItem, ve.ui.MWTransclusionContextItem );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.ui.MWSignatureContextItem.static.editable = false;
|
|
|
|
|
|
|
|
ve.ui.MWSignatureContextItem.static.name = 'mwSignature';
|
|
|
|
|
|
|
|
ve.ui.MWSignatureContextItem.static.icon = 'signature';
|
|
|
|
|
|
|
|
ve.ui.MWSignatureContextItem.static.label =
|
|
|
|
OO.ui.deferMsg( 'visualeditor-mwsignature-tool' );
|
|
|
|
|
|
|
|
ve.ui.MWSignatureContextItem.static.modelClasses = [ ve.dm.MWSignatureNode ];
|
|
|
|
|
|
|
|
ve.ui.MWSignatureContextItem.static.commandName = 'mwSignature';
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWSignatureContextItem.prototype.getDescription = function () {
|
|
|
|
return '';
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.contextItemFactory.register( ve.ui.MWSignatureContextItem );
|