mediawiki-extensions-Visual.../modules/ve-mw/ui/dialogs/ve.ui.MWCommandHelpDialog.js
James D. Forrester a232147b11 Switch 'disallowQuotedKeysInObjects' jscs rule on and fix up
Change-Id: I75ac4b378ef485feead9d0eff34ed7877b94b5d0
2014-08-22 13:50:48 -07:00

51 lines
1.2 KiB
JavaScript

/*!
* VisualEditor UserInterface MWCommandHelpDialog class.
*
* @copyright 2011-2014 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 );