mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
e6f48c5c93
Because the former isn't a real word. Change-Id: Ie6ed15f9e390b357bbaa768b57f3c3fd7cf21181
36 lines
778 B
JavaScript
36 lines
778 B
JavaScript
/*!
|
|
* VisualEditor UserInterface BarToolGroup class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface bar tool group.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends ve.ui.ToolGroup
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.BarToolGroup = function VeUiBarToolGroup( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.ToolGroup.call( this, toolbar, config );
|
|
|
|
// Initialization
|
|
this.$.addClass( 've-ui-barToolGroup' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.BarToolGroup, ve.ui.ToolGroup );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.BarToolGroup.static.showTitle = true;
|
|
|
|
ve.ui.BarToolGroup.static.showTrigger = true;
|