mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
4c3a49dfc0
Stop using this.$.frame.dir - a horrible hack made of duct tape and bubble gum. Or perhaps rather, masking tape and post-it-notes... Change-Id: I53690e4485974b95edbdd255c0b96c2f639c5261
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
/*!
|
|
* ObjectOriented UserInterface PanelLayout class.
|
|
*
|
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Layout that expands to cover the entire area of its parent, with optional scrolling and padding.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.Layout
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
* @cfg {boolean} [scrollable] Allow vertical scrolling
|
|
* @cfg {boolean} [padded] Pad the content from the edges
|
|
*/
|
|
OO.ui.PanelLayout = function OoUiPanelLayout( config ) {
|
|
// Config initialization
|
|
config = config || {};
|
|
|
|
// Parent constructor
|
|
OO.ui.Layout.call( this, config );
|
|
|
|
// Initialization
|
|
this.$element.addClass( 'oo-ui-panelLayout' );
|
|
if ( config.scrollable ) {
|
|
this.$element.addClass( 'oo-ui-panelLayout-scrollable' );
|
|
}
|
|
|
|
if ( config.padded ) {
|
|
this.$element.addClass( 'oo-ui-panelLayout-padded' );
|
|
}
|
|
|
|
// Add directionality class:
|
|
this.$element.addClass( 'oo-ui-' + OO.ui.Element.getDir( this.$.context ) );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( OO.ui.PanelLayout, OO.ui.Layout );
|