mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-03 02:16:51 +00:00
a226716d70
Objective: * Make it possible to make a toolbar without a surface Changes: *.php * Links to new file ve.ui.Toolbar.js, ve.ui.SurfaceToolbar.js * Split toolbar into generic and surface specific classes *.js * Update symbol names Change-Id: Ice063a2fb67b5ce5155cdc96a0d47af49eee48cb
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface IndentButtonTool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface indent button tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.IndentationButtonTool
|
|
* @constructor
|
|
* @param {ve.ui.SurfaceToolbar} toolbar
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.IndentButtonTool = function VeUiIndentButtonTool( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.IndentationButtonTool.call( this, toolbar, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.IndentButtonTool, ve.ui.IndentationButtonTool );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.IndentButtonTool.static.name = 'indent';
|
|
|
|
ve.ui.IndentButtonTool.static.icon = 'indent-list';
|
|
|
|
ve.ui.IndentButtonTool.static.titleMessage = 'visualeditor-indentationbutton-indent-tooltip';
|
|
|
|
ve.ui.IndentButtonTool.static.method = 'increase';
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.toolFactory.register( 'indent', ve.ui.IndentButtonTool );
|
|
|
|
ve.ui.commandRegistry.register( 'indent', 'indentation', 'increase' );
|
|
|
|
ve.ui.triggerRegistry.register( 'indent', new ve.ui.Trigger( 'tab' ) );
|