mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/SyntaxHighlight_GeSHi
synced 2024-11-28 00:01:10 +00:00
af1a91ade9
Change-Id: Iad1882c20c17792c1339cf9922b9c4c43bf6122b
37 lines
1.5 KiB
JavaScript
37 lines
1.5 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWSyntaxHighlightInspectorTool class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface syntax highlight tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.FragmentInspectorTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWSyntaxHighlightInspectorTool = function VeUiMWSyntaxHighlightInspectorTool() {
|
|
ve.ui.MWSyntaxHighlightInspectorTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( ve.ui.MWSyntaxHighlightInspectorTool, ve.ui.FragmentInspectorTool );
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.name = 'syntaxhighlightInspector';
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.group = 'object';
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.icon = 'markup';
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.title = OO.ui.deferMsg(
|
|
'syntaxhighlight-visualeditor-mwsyntaxhighlightinspector-title' );
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.modelClasses = [ ve.dm.MWInlineSyntaxHighlightNode ];
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.commandName = 'syntaxhighlightInspector';
|
|
ve.ui.MWSyntaxHighlightInspectorTool.static.autoAddToCatchall = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWSyntaxHighlightInspectorTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'syntaxhighlightInspector', 'window', 'open',
|
|
{ args: [ 'syntaxhighlightInspector' ], supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|