2013-07-03 01:30:10 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWDialog class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserInterface MediaWiki dialog.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @abstract
|
2013-10-04 17:51:44 +00:00
|
|
|
* @extends ve.ui.SurfaceDialog
|
2013-07-03 01:30:10 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2013-10-04 17:51:44 +00:00
|
|
|
* @param {ve.ui.SurfaceWindowSet} windowSet Window set this dialog is part of
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-07-03 01:30:10 +00:00
|
|
|
*/
|
2013-10-04 17:51:44 +00:00
|
|
|
ve.ui.MWDialog = function VeUiMWDialog( windowSet, config ) {
|
2013-07-03 01:30:10 +00:00
|
|
|
// Parent constructor
|
2013-10-04 17:51:44 +00:00
|
|
|
ve.ui.SurfaceDialog.call( this, windowSet, config );
|
2013-07-03 01:30:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-04 17:51:44 +00:00
|
|
|
ve.inheritClass( ve.ui.MWDialog, ve.ui.SurfaceDialog );
|