mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
03c5822b6b
Also update tools for changes in VE core. New changes: e4de14b Make tools use commands e029817 Make getToolsForNode place primary commands first Change-Id: I66575ee6d49e6b2f5a5f789978da98bb55e6dc5e
29 lines
1 KiB
JavaScript
29 lines
1 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki UserInterface hieroglyphics tool class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface hieroglyphics tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.InspectorTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHieroInspectorTool = function VeUiMWHieroInspectorTool( toolGroup, config ) {
|
|
ve.ui.InspectorTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHieroInspectorTool, ve.ui.InspectorTool );
|
|
ve.ui.MWHieroInspectorTool.static.name = 'hiero';
|
|
ve.ui.MWHieroInspectorTool.static.group = 'object';
|
|
ve.ui.MWHieroInspectorTool.static.icon = 'hiero';
|
|
ve.ui.MWHieroInspectorTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mwhieroinspector-title' );
|
|
ve.ui.MWHieroInspectorTool.static.modelClasses = [ ve.dm.MWHieroNode ];
|
|
ve.ui.MWHieroInspectorTool.static.commandName = 'hiero';
|
|
ve.ui.toolFactory.register( ve.ui.MWHieroInspectorTool );
|