mediawiki-extensions-Math/modules/ve-math/ve.ui.MWMathInspector.js
Ed Sanders 8aedf53e00 VE: Remove date from @copyright line
Change-Id: I37b42640123f861eff8ae23b289c3714bee308a4
2024-03-19 18:37:26 +00:00

37 lines
819 B
JavaScript

/*!
* VisualEditor UserInterface MWMathInspector class.
*
* @copyright See AUTHORS.txt
* @license MIT
*/
/**
* MediaWiki math inspector.
*
* @class
* @extends ve.ui.MWLiveExtensionInspector
*
* @constructor
* @param {Object} [config] Configuration options
*/
ve.ui.MWMathInspector = function VeUiMWMathInspector( config ) {
// Parent constructor
ve.ui.MWMathInspector.super.call( this, config );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWMathInspector, ve.ui.MWLatexInspector );
/* Static properties */
ve.ui.MWMathInspector.static.name = 'mathInspector';
ve.ui.MWMathInspector.static.title = OO.ui.deferMsg( 'math-visualeditor-mwmathdialog-title' );
ve.ui.MWMathInspector.static.modelClasses = [ ve.dm.MWMathNode ];
/* Registration */
ve.ui.windowFactory.register( ve.ui.MWMathInspector );