mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
2a1076e295
* Be more specific about the type of context which a context item belongs to. * Make grammar clearer. Change-Id: Ic480411cead80a1651c61ce9841dfbdc24a7b915
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor MWSignatureContextItem class.
|
|
*
|
|
* @copyright 2011-2020 VisualEditor Team and others; see http://ve.mit-license.org
|
|
*/
|
|
|
|
/**
|
|
* Context item for a MWSignature.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.LinearContextItem
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.LinearContext} context Context the item is in
|
|
* @param {ve.dm.Model} model Model the item is related to
|
|
* @param {Object} [config]
|
|
*/
|
|
ve.ui.MWSignatureContextItem = function VeUiMWSignatureContextItem() {
|
|
// Parent constructor
|
|
ve.ui.MWSignatureContextItem.super.apply( this, arguments );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 've-ui-mwSignatureContextItem' );
|
|
this.$actions.remove();
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWSignatureContextItem, ve.ui.LinearContextItem );
|
|
|
|
/* 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 ];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWSignatureContextItem.prototype.getDescription = function () {
|
|
return '';
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.contextItemFactory.register( ve.ui.MWSignatureContextItem );
|