mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
31 lines
662 B
JavaScript
31 lines
662 B
JavaScript
|
/*!
|
||
|
* ObjectOriented UserInterface OutlineWidget class.
|
||
|
*
|
||
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Create an OO.ui.OutlineWidget object.
|
||
|
*
|
||
|
* @class
|
||
|
* @extends OO.ui.SelectWidget
|
||
|
*
|
||
|
* @constructor
|
||
|
* @param {Object} [config] Configuration options
|
||
|
*/
|
||
|
OO.ui.OutlineWidget = function OoUiOutlineWidget( config ) {
|
||
|
// Config intialization
|
||
|
config = config || {};
|
||
|
|
||
|
// Parent constructor
|
||
|
OO.ui.SelectWidget.call( this, config );
|
||
|
|
||
|
// Initialization
|
||
|
this.$.addClass( 'oo-ui-outlineWidget' );
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
OO.inheritClass( OO.ui.OutlineWidget, OO.ui.SelectWidget );
|