2022-04-22 23:34:06 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor UserInterface MWTabberTranscludeInspector class.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.MWLiveExtensionInspector
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.MWTabberTranscludeInspector = function VeUiMWTabberTranscludeInspector() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWTabberTranscludeInspector.super.apply( this, arguments );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWTabberTranscludeInspector, ve.ui.MWLiveExtensionInspector );
|
|
|
|
|
|
|
|
/* Static properties */
|
|
|
|
|
|
|
|
ve.ui.MWTabberTranscludeInspector.static.name = 'mwTabberTransclude';
|
|
|
|
|
|
|
|
ve.ui.MWTabberTranscludeInspector.static.title =
|
2022-04-23 02:22:44 +00:00
|
|
|
OO.ui.deferMsg( 'tabberneue-visualeditor-mwtabbertranscludeinspector-title' );
|
2022-04-22 23:34:06 +00:00
|
|
|
|
|
|
|
ve.ui.MWTabberTranscludeInspector.static.modelClasses = [ ve.dm.MWTabberTranscludeNode ];
|
|
|
|
|
|
|
|
ve.ui.MWTabberTranscludeInspector.static.dir = 'ltr';
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
2022-04-23 00:00:32 +00:00
|
|
|
ve.ui.windowFactory.register( ve.ui.MWTabberTranscludeInspector );
|