mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
294db5e3ef
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
42 lines
1 KiB
JavaScript
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' ) }
|
|
);
|