mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
fadd7c46a2
Pretty straightforward, although we should start thinking about grouping/hiding 'advanced' formatting options in the toolbar. Making this button experimental for now until we've come up with a way to deal with this problem. Bug: 51590 Change-Id: Ieb1935b742aced4b883d8a194e6cb69be68473d0
41 lines
1 KiB
JavaScript
41 lines
1 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface CodeButtonTool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface code button tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.AnnotationButtonTool
|
|
* @constructor
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.CodeButtonTool = function VeUiCodeButtonTool( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.AnnotationButtonTool.call( this, toolbar, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.CodeButtonTool, ve.ui.AnnotationButtonTool );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.CodeButtonTool.static.name = 'code';
|
|
|
|
ve.ui.CodeButtonTool.static.icon = 'code';
|
|
|
|
ve.ui.CodeButtonTool.static.titleMessage = 'visualeditor-annotationbutton-code-tooltip';
|
|
|
|
ve.ui.CodeButtonTool.static.annotation = { 'name': 'textStyle/code' };
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.toolFactory.register( 'code', ve.ui.CodeButtonTool );
|
|
|
|
ve.ui.commandRegistry.register( 'code', 'annotation', 'toggle', 'textStyle/code' );
|