mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
28 lines
480 B
JavaScript
28 lines
480 B
JavaScript
|
/*!
|
||
|
* VisualEditor user interface ContentDialog class.
|
||
|
*
|
||
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Document dialog.
|
||
|
*
|
||
|
* @class
|
||
|
* @abstract
|
||
|
* @extends ve.ui.Dialog
|
||
|
*
|
||
|
* @constructor
|
||
|
*/
|
||
|
ve.ui.ContentDialog = function VeUiContentDialog() {
|
||
|
// Parent constructor
|
||
|
ve.ui.Dialog.call( this );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
ve.inheritClass( ve.ui.ContentDialog, ve.ui.Dialog );
|
||
|
|
||
|
/* Methods */
|
||
|
|