mediawiki-extensions-Visual.../modules/ve-mw/ui/ve.ui.MWDialog.js
Ed Sanders e6f48c5c93 'Config' -> 'Configuration' in all comments
Because the former isn't a real word.

Change-Id: Ie6ed15f9e390b357bbaa768b57f3c3fd7cf21181
2013-09-25 11:23:16 +01:00

27 lines
576 B
JavaScript

/*!
* 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
* @extends ve.ui.Dialog
*
* @constructor
* @param {ve.ui.Surface} surface
* @param {Object} [config] Configuration options
*/
ve.ui.MWDialog = function VeUiMWDialog( surface, config ) {
// Parent constructor
ve.ui.Dialog.call( this, surface, config );
};
/* Inheritance */
ve.inheritClass( ve.ui.MWDialog, ve.ui.Dialog );