mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
2f8b3e0d96
Change-Id: Ie92dab7411116d3410195c3fb0a3513c664c0c30
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWCommandHelpDialog class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog listing all command keyboard shortcuts.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.CommandHelpDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWCommandHelpDialog = function VeUiMWCommandHelpDialog( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWCommandHelpDialog.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWCommandHelpDialog, ve.ui.CommandHelpDialog );
|
|
|
|
/* Static methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWCommandHelpDialog.static.getCommandGroups = function () {
|
|
var commandGroups = ve.ui.MWCommandHelpDialog.super.static.getCommandGroups.call( this ),
|
|
accessKeyPrefix = mw.util.tooltipAccessKeyPrefix.toUpperCase().replace( /-/g, ' + ' ),
|
|
save = ve.msg( 'accesskey-save' );
|
|
|
|
if ( save !== '-' && save !== '' ) {
|
|
commandGroups.other.commands.push(
|
|
{
|
|
shortcuts: [ accessKeyPrefix + save.toUpperCase() ],
|
|
msg: 'visualeditor-savedialog-label-save'
|
|
}
|
|
);
|
|
}
|
|
|
|
return commandGroups;
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWCommandHelpDialog );
|