mediawiki-extensions-Visual.../modules/ve-mw/ui/ve.ui.MWDialog.js
James D. Forrester 0ffd654bed Bump copyright like it's 2014
Change-Id: Ic469ebda2c061dc7da0b4c1625f43a7be55da4fa
2014-01-05 20:06:50 +08:00

27 lines
618 B
JavaScript

/*!
* VisualEditor UserInterface MWDialog class.
*
* @copyright 2011-2014 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.WindowSet} windowSet Window set this dialog is part of
* @param {Object} [config] Configuration options
*/
ve.ui.MWDialog = function VeUiMWDialog( windowSet, config ) {
// Parent constructor
ve.ui.Dialog.call( this, windowSet, config );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWDialog, ve.ui.Dialog );