mediawiki-extensions-Visual.../modules/ve-mw/ui/dialogs/ve.ui.MWCommandHelpDialog.js
James D. Forrester 2f8b3e0d96 build: Bump copyright notices to 2015
Change-Id: Ie92dab7411116d3410195c3fb0a3513c664c0c30
2015-01-12 20:34:19 -08:00

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 );