mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
cf7f2b141d
Let's experiment with this via our local Gruntfile. If it works fine we can install it in Jenkins (similar to node-csslint). Verify through $ npm install && npm test; Fixed all outstanding violations. Also: * Added syntaxhighight to ignore. * Added imetests (which contain unformatted JSON) to ignore. * In ve.dm.ModelRegistry#matchTypeRegExps, removed redundant !! cast from the [+!!withFunc] statement which was hitting a bug in node-jscs. All callers to this local private function pass a literal boolean true/false so no need to cast it. * Removed "/* key .. , value */" from ve.setProp, though this wasn't caught by node-jscs, found it when searching for " , ". * Made npm.devDependencies fixed instead of using tilde-ranges. This too often leads to strange bugs or sudden changes. Fixed them at the version they were currently ranging to. Bug: 54218 Change-Id: Ib2630806f3946874c8b01e58cf171df83a28da29
60 lines
1.5 KiB
JavaScript
60 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.WindowSet} 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 );
|