mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 10:48:52 +00:00
28 lines
1 KiB
JavaScript
28 lines
1 KiB
JavaScript
|
/*!
|
||
|
* VisualEditor MediaWiki UserInterface hieroglyphics tool class.
|
||
|
*
|
||
|
* @copyright 2011-2013 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 {ve.ui.SurfaceToolbar} toolbar
|
||
|
* @param {Object} [config] Configuration options
|
||
|
*/
|
||
|
ve.ui.MWHieroInspectorTool = function VeUiMWHieroInspectorTool( toolbar, config ) {
|
||
|
ve.ui.InspectorTool.call( this, toolbar, 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.titleMessage = 'visualeditor-mwhieroinspector-title';
|
||
|
ve.ui.MWHieroInspectorTool.static.inspector = 'hiero';
|
||
|
ve.ui.MWHieroInspectorTool.static.modelClasses = [ ve.dm.MWHieroNode ];
|
||
|
ve.ui.toolFactory.register( ve.ui.MWHieroInspectorTool );
|