Release notes: https://gerrit.wikimedia.org/g/oojs/ui/+/v0.38.0/History.md Bug: T178387 Bug: T232383 Bug: T248393 Bug: T249853 Change-Id: Iaddcb40869fdba31e3c489e260bee7002ee22cd9 Depends-On: I00c36baabfb781d81a9bfcc9db8f10699ea9749d
45 lines
No EOL
734 B
JavaScript
45 lines
No EOL
734 B
JavaScript
/*!
|
||
* OOUI v0.38.0
|
||
* https://www.mediawiki.org/wiki/OOUI
|
||
*
|
||
* Copyright 2011–2020 OOUI Team and other contributors.
|
||
* Released under the MIT license
|
||
* http://oojs.mit-license.org
|
||
*
|
||
* Date: 2020-04-15T01:28:08Z
|
||
*/
|
||
( function ( OO ) {
|
||
|
||
'use strict';
|
||
|
||
/**
|
||
* @class
|
||
* @extends OO.ui.Theme
|
||
*
|
||
* @constructor
|
||
*/
|
||
OO.ui.ApexTheme = function OoUiApexTheme() {
|
||
// Parent constructor
|
||
OO.ui.ApexTheme.parent.call( this );
|
||
};
|
||
|
||
/* Setup */
|
||
|
||
OO.inheritClass( OO.ui.ApexTheme, OO.ui.Theme );
|
||
|
||
/* Methods */
|
||
|
||
/**
|
||
* @inheritdoc
|
||
*/
|
||
OO.ui.ApexTheme.prototype.getDialogTransitionDuration = function () {
|
||
return 250;
|
||
};
|
||
|
||
/* Instantiation */
|
||
|
||
OO.ui.theme = new OO.ui.ApexTheme();
|
||
|
||
}( OO ) );
|
||
|
||
//# sourceMappingURL=oojs-ui-apex.js.map.json
|