mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-23 23:25:02 +00:00
8aedf53e00
Change-Id: I37b42640123f861eff8ae23b289c3714bee308a4
37 lines
819 B
JavaScript
37 lines
819 B
JavaScript
/*!
|
|
* VisualEditor UserInterface MWChemInspector class.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki chem inspector.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWLiveExtensionInspector
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWChemInspector = function VeUiMWChemInspector( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWChemInspector.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWChemInspector, ve.ui.MWLatexInspector );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWChemInspector.static.name = 'chemInspector';
|
|
|
|
ve.ui.MWChemInspector.static.title = OO.ui.deferMsg( 'math-visualeditor-mwchemdialog-title' );
|
|
|
|
ve.ui.MWChemInspector.static.modelClasses = [ ve.dm.MWChemNode ];
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWChemInspector );
|