mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 08:34:54 +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
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface OutdentButtonTool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface outdent button tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.IndentationButtonTool
|
|
* @constructor
|
|
* @param {ve.ui.SurfaceToolbar} toolbar
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.OutdentButtonTool = function VeUiOutdentButtonTool( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.IndentationButtonTool.call( this, toolbar, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.OutdentButtonTool, ve.ui.IndentationButtonTool );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.OutdentButtonTool.static.name = 'outdent';
|
|
|
|
ve.ui.OutdentButtonTool.static.icon = 'outdent-list';
|
|
|
|
ve.ui.OutdentButtonTool.static.titleMessage = 'visualeditor-indentationbutton-outdent-tooltip';
|
|
|
|
ve.ui.OutdentButtonTool.static.method = 'decrease';
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.toolFactory.register( 'outdent', ve.ui.OutdentButtonTool );
|
|
|
|
// TODO: Consistency between outdent and unindent.
|
|
ve.ui.commandRegistry.register( 'outdent', 'indentation', 'decrease' );
|
|
|
|
ve.ui.triggerRegistry.register( 'outdent', new ve.ui.Trigger( 'shift+tab' ) );
|