mediawiki-extensions-Visual.../modules/ve/ui/ve.ui.DialogFactory.js
Trevor Parscal efafed3231 Remove ve.{inheritClass,mixinClass} and use OO instead
Change-Id: I8df9226a358a76b661eab6e967ff0d63d361f691
2013-10-18 18:58:08 +02:00

27 lines
526 B
JavaScript

/*!
* VisualEditor UserInterface DialogFactory class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* UserInterface Dialog factory.
*
* @class
* @extends ve.Factory
* @constructor
*/
ve.ui.DialogFactory = function VeUiDialogFactory() {
// Parent constructor
ve.Factory.call( this );
};
/* Inheritance */
OO.inheritClass( ve.ui.DialogFactory, ve.Factory );
/* Initialization */
ve.ui.dialogFactory = new ve.ui.DialogFactory();