mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
17898270ee
Also add table and comment insertions. Change-Id: If87261bf3d01854ab1f7ce1b447589fa8098dcf2
77 lines
2.4 KiB
JavaScript
77 lines
2.4 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 properties */
|
|
|
|
ve.ui.MWCommandHelpDialog.static.commandGroups = ve.extendObject( ve.ui.CommandHelpDialog.static.commandGroups, {
|
|
insert: {
|
|
title: 'visualeditor-shortcuts-insert',
|
|
commands: {},
|
|
promote: [],
|
|
demote: []
|
|
}
|
|
} );
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWCommandHelpDialog );
|
|
|
|
( function () {
|
|
var accessKeyPrefix = $.fn.updateTooltipAccessKeys.getAccessKeyPrefix().toUpperCase().replace( /-/g, ' + ' ),
|
|
save = ve.msg( 'accesskey-save' );
|
|
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'textStyle', 'link', { sequence: [ 'wikitextLink' ] } );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'formatting', 'blockquote', { sequence: [ 'wikitextDescription' ] } );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'formatting', 'listNumber', { sequence: [ 'numberHash' ] } );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'formatting', 'heading2', {
|
|
sequence: [ 'wikitextHeading' ],
|
|
msg: 'visualeditor-formatdropdown-format-heading2'
|
|
} );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'insert', 'template', {
|
|
sequence: [ 'wikitextTemplate' ],
|
|
msg: 'visualeditor-dialog-template-title'
|
|
} );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'insert', 'ref', {
|
|
sequence: [ 'wikitextRef' ],
|
|
msg: 'visualeditor-dialog-reference-title'
|
|
} );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'insert', 'table', {
|
|
sequence: [ 'wikitextTable' ],
|
|
msg: 'visualeditor-table-insert-table'
|
|
} );
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'insert', 'comment', {
|
|
sequence: [ 'wikitextComment' ],
|
|
msg: 'visualeditor-commentinspector-title'
|
|
} );
|
|
|
|
if ( save !== '-' && save !== '' ) {
|
|
ve.ui.MWCommandHelpDialog.static.registerCommand( 'other', 'save', {
|
|
shortcuts: [ accessKeyPrefix + save.toUpperCase() ],
|
|
msg: 'visualeditor-savedialog-label-save',
|
|
demote: true
|
|
} );
|
|
}
|
|
} )();
|