mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 06:24:08 +00:00
373538d206
Change-Id: Id9a5e2633667786d3bd1c900893007f0ec71a8a5
47 lines
881 B
JavaScript
47 lines
881 B
JavaScript
/*!
|
|
* VisualEditor MediaWiki Initialization namespace.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Namespace for all VisualEditor MediaWiki Initialization classes, static methods and static
|
|
* properties.
|
|
*
|
|
* @namespace
|
|
*/
|
|
ve.init.mw = {
|
|
targetFactory: new OO.Factory()
|
|
};
|
|
|
|
/**
|
|
* @namespace mw.libs.ve
|
|
*/
|
|
|
|
/* Inherited namespaces */
|
|
|
|
/**
|
|
* Namespace for all VisualEditor classes, static methods and static properties.
|
|
*
|
|
* @namespace ve
|
|
*/
|
|
|
|
/**
|
|
* Namespace for all VisualEditor ContentEditable classes, static methods and static properties.
|
|
*
|
|
* @namespace ve.ce
|
|
*/
|
|
|
|
/**
|
|
* Namespace for all VisualEditor DataModel classes, static methods and static properties.
|
|
*
|
|
* @namespace ve.dm
|
|
*/
|
|
|
|
/**
|
|
* Namespace for all VisualEditor UserInterface classes, static methods and static properties.
|
|
*
|
|
* @namespace ve.ui
|
|
*/
|