mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-17 03:18:48 +00:00
aea64bf2df
Moved to the Math extension in I8e582ee6deadc2750 Change-Id: Iab0c56246626de1e0f6ab770e777c0a28756fa75
28 lines
830 B
JavaScript
28 lines
830 B
JavaScript
/*!
|
|
* VisualEditor CommandRegistry class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/* MW Command Registrations */
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command( 'gallery', 'inspector', 'open', 'gallery' )
|
|
);
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command( 'mediaEdit', 'dialog', 'open', 'mediaEdit' )
|
|
);
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command( 'referenceList', 'dialog', 'open', 'referenceList' )
|
|
);
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command( 'reference', 'dialog', 'open', 'reference' )
|
|
);
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command( 'transclusion', 'dialog', 'open', 'transclusion' )
|
|
);
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command( 'alienExtension', 'inspector', 'open', 'alienExtension' )
|
|
);
|