/*! * 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 );