mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
53f4b2f1ea
In general, the direction of the MWExtensionInspector textarea should be dependent on the directionality of the node it is editing. The only exceptions are <hiero> and <math> that need to have their textarea LTR always; these two inspectors' directionality definition is overridden in their onOpen() method. Bug: 56779 Change-Id: Iac5c1c3bf2c61b9fa36c9588c1734c91ca4305c4
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWHieroInspector class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki hieroglyphics inspector.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.SurfaceWindowSet} windowSet Window set this inspector is part of
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHieroInspector = function VeUiMWHieroInspector( windowSet, config ) {
|
|
// Parent constructor
|
|
ve.ui.MWExtensionInspector.call( this, windowSet, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWHieroInspector, ve.ui.MWExtensionInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWHieroInspector.static.name = 'hiero';
|
|
|
|
ve.ui.MWHieroInspector.static.icon = 'hiero';
|
|
|
|
ve.ui.MWHieroInspector.static.titleMessage = 'visualeditor-mwhieroinspector-title';
|
|
|
|
ve.ui.MWHieroInspector.static.nodeView = ve.ce.MWHieroNode;
|
|
|
|
ve.ui.MWHieroInspector.static.nodeModel = ve.dm.MWHieroNode;
|
|
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.MWHieroInspector.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWExtensionInspector.prototype.initialize.call( this );
|
|
|
|
this.input.$element.addClass( 've-ui-mwHieroInspector-input' );
|
|
};
|
|
|
|
ve.ui.MWHieroInspector.prototype.onOpen = function () {
|
|
// Parent method
|
|
ve.ui.MWExtensionInspector.prototype.onOpen.call( this );
|
|
|
|
// Override directionality settings, inspector's input
|
|
// should always be LTR:
|
|
this.input.setRTL( false );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.inspectorFactory.register( ve.ui.MWHieroInspector );
|