mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 14:12:53 +00:00
6fb65ec3a1
Create getter for extensionsName which is overriden by MWAlienExtensionNode. Also removed angle brackets around Alien title as the inspector already has an angle bracket icon, and a '<' close button. Change-Id: Ice8c5d73ed621f8e585b5f372788666f8c5aeb50
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWAlienExtensionInspector class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki alien extension inspector.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.Surface} surface
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.MWAlienExtensionInspector = function VeUiMWAlienExtensionInspector( surface, config ) {
|
|
// Parent constructor
|
|
ve.ui.MWExtensionInspector.call( this, surface, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.MWAlienExtensionInspector, ve.ui.MWExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.icon = 'alienextension';
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.nodeView = ve.ce.MWAlienExtensionNode;
|
|
|
|
ve.ui.MWAlienExtensionInspector.static.nodeModel = ve.dm.MWAlienExtensionNode;
|
|
|
|
/* Methods */
|
|
|
|
/** */
|
|
ve.ui.MWAlienExtensionInspector.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWExtensionInspector.prototype.initialize.call( this );
|
|
|
|
this.input.$.addClass( 've-ui-mwAlienExtensionInspector-input' );
|
|
};
|
|
|
|
ve.ui.MWAlienExtensionInspector.prototype.getTitle = function () {
|
|
return this.surface.getView().getFocusedNode().getModel().getExtensionName();
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.inspectorFactory.register( 'mwAlienExtensionInspector', ve.ui.MWAlienExtensionInspector );
|