mediawiki-extensions-Visual.../modules/ve/ui/tools/buttons/ve.ui.OutdentButtonTool.js
Trevor Parscal 294db5e3ef Trigger refactor
Objective: Simplify the registration and use of triggers

Changes:

* Renamed ve.Command to ve.Trigger
* Renamed command demo to trigger demo
* Removed language prefixing of triggers
* Generating trigger tooltips rather than hard-coding them in i18n
* Added documentation to clarify that only 'mac' and 'pc' are supported platforms, and how the default is chosen
* Simplified trigger registry's register command
* Updated trigger registrations

Change-Id: Ibab6ad5b5c86f24707f064967dc2119a81125392
2013-01-28 17:06:13 -08:00

41 lines
1.1 KiB
JavaScript

/*!
* VisualEditor UserInterface OutdentButtonTool class.
*
* @copyright 2011-2012 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.Toolbar} toolbar
*/
ve.ui.OutdentButtonTool = function VeUiOutdentButtonTool( toolbar ) {
// Parent constructor
ve.ui.IndentationButtonTool.call( this, toolbar );
};
/* Inheritance */
ve.inheritClass( ve.ui.OutdentButtonTool, ve.ui.IndentationButtonTool );
/* Static Properties */
ve.ui.OutdentButtonTool.static.name = 'outdent';
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.commandRegistry.register( 'outdent', 'indentation', 'decrease' );
ve.triggerRegistry.register( 'outdent', new ve.Trigger( 'shift+tab' ) );