2013-07-03 01:30:10 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWDialog class.
|
|
|
|
*
|
2014-01-05 12:05:05 +00:00
|
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
2013-07-03 01:30:10 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserInterface MediaWiki dialog.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @abstract
|
2013-11-05 00:29:50 +00:00
|
|
|
* @extends ve.ui.Dialog
|
2013-07-03 01:30:10 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
2013-11-05 00:29:50 +00:00
|
|
|
* @param {ve.ui.WindowSet} 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-11-05 00:29:50 +00:00
|
|
|
ve.ui.Dialog.call( this, windowSet, config );
|
2013-07-03 01:30:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-11-05 00:29:50 +00:00
|
|
|
OO.inheritClass( ve.ui.MWDialog, ve.ui.Dialog );
|