mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
7044ec820f
Changes include: VisualEditor.i18n.php, VisualEditor.php * i18n labels for dialogs ve.init.mw.ViewPageTarget.js * Initial go at onOpenDialog and onCloseDialog methods ve.init.Target.js * Change calls to dialog hide & show to close & open ve.ui.MetaDialog.js, ve.ui.ContentDialog.js * Pass surface when constructing * Add static title message property ve.ui.Surface.css * Set high z-index for toolbar for shadow to overlap dialog. ve.ui.Dialog.js * Extends EventEmitter class. * Changed hide/show method names to open/close. * Create base ui elements. ve.Surface.js * Create instance of meta dialog. Change-Id: I867ca0546606eeb5e2ab7f612bb5af700ab877ec
42 lines
781 B
JavaScript
42 lines
781 B
JavaScript
/*!
|
|
* VisualEditor user interface MetaDialog 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
|
|
* @param {ve.ui.Surface} surface
|
|
*/
|
|
ve.ui.MetaDialog = function VeUiMetaDialog( surface ) {
|
|
// Parent constructor
|
|
ve.ui.Dialog.call( this, surface );
|
|
|
|
// TODO: Construct meta dialog inside .ve-ui-dialog-container
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.MetaDialog, ve.ui.Dialog );
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
/**
|
|
* Localized message for dialog title.
|
|
*
|
|
* @static
|
|
* @property
|
|
* @type {string}
|
|
*/
|
|
ve.ui.MetaDialog.static.dialogTitleMessage = 'visualeditor-dialog-meta-title';
|
|
|
|
/* Methods */
|