/*! * 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 */ ve.ui.MetaDialog = function VeUiMetaDialog() { // Parent constructor ve.ui.Dialog.call( this ); }; /* Inheritance */ ve.inheritClass( ve.ui.MetaDialog, ve.ui.Dialog ); /* Methods */