mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
23 lines
439 B
JavaScript
23 lines
439 B
JavaScript
|
/*!
|
||
|
* ObjectOriented UserInterface DialogFactory class.
|
||
|
*
|
||
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Factory for dialogs.
|
||
|
*
|
||
|
* @class
|
||
|
* @extends OO.Factory
|
||
|
* @constructor
|
||
|
*/
|
||
|
OO.ui.DialogFactory = function OoUiDialogFactory() {
|
||
|
// Parent constructor
|
||
|
OO.Factory.call( this );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
OO.inheritClass( OO.ui.DialogFactory, OO.Factory );
|