mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 14:12:53 +00:00
07821f5f55
Change-Id: Id71c7f862e43125599ecfc6eeb27719e1891489d
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWLinkButtonTool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface MediaWiki link button tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.LinkButtonTool
|
|
* @constructor
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.MWLinkButtonTool = function VeUiMwLinkButtonTool( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.LinkButtonTool.call( this, toolbar, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.MWLinkButtonTool, ve.ui.LinkButtonTool );
|
|
|
|
/* Static Members */
|
|
|
|
ve.ui.MWLinkButtonTool.static.name = 'mwLink';
|
|
|
|
ve.ui.MWLinkButtonTool.static.inspector = 'mwLink';
|
|
|
|
ve.ui.MWLinkButtonTool.static.modelClasses = [
|
|
ve.dm.MWExternalLinkAnnotation, ve.dm.MWInternalLinkAnnotation
|
|
];
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.toolFactory.register( 'mwLink', ve.ui.MWLinkButtonTool );
|
|
|
|
ve.ui.commandRegistry.register( 'mwLink', 'inspector', 'open', 'mwLink' );
|
|
|
|
ve.ui.triggerRegistry.register(
|
|
'mwLink', { 'mac': new ve.ui.Trigger( 'cmd+k' ), 'pc': new ve.ui.Trigger( 'ctrl+k' ) }
|
|
);
|