2013-10-09 20:09:59 +00:00
|
|
|
/*!
|
|
|
|
* 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
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$element.addClass( 'oo-ui-outlineWidget' );
|
2013-10-09 20:09:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( OO.ui.OutlineWidget, OO.ui.SelectWidget );
|