mediawiki-extensions-Visual.../modules/ve/ui/tools/buttons/ve.ui.IndentButtonTool.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

40 lines
1,014 B
JavaScript

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