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

42 lines
1 KiB
JavaScript

/*!
* VisualEditor UserInterface LinkButtonTool class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* UserInterface link button tool.
*
* @class
* @extends ve.ui.InspectorButtonTool
* @constructor
* @param {ve.ui.Toolbar} toolbar
*/
ve.ui.LinkButtonTool = function VeUiLinkButtonTool( toolbar ) {
// Parent constructor
ve.ui.InspectorButtonTool.call( this, toolbar );
};
/* Inheritance */
ve.inheritClass( ve.ui.LinkButtonTool, ve.ui.InspectorButtonTool );
/* Static Properties */
ve.ui.LinkButtonTool.static.name = 'link';
ve.ui.LinkButtonTool.static.titleMessage = 'visualeditor-annotationbutton-link-tooltip';
ve.ui.LinkButtonTool.static.inspector = 'link';
/* Registration */
ve.ui.toolFactory.register( 'link', ve.ui.LinkButtonTool );
ve.commandRegistry.register( 'link', 'inspector', 'open', 'link' );
ve.triggerRegistry.register(
'link', { 'mac': new ve.Trigger( 'cmd+k' ), 'pc': new ve.Trigger( 'ctrl+k' ) }
);