Release notes: https://gerrit.wikimedia.org/g/oojs/ui/+/v0.44.2/History.md Bug: T180173 Bug: T180890 Bug: T309916 Bug: T313238 Bug: T313344 Depends-On: I1a75853fb52b8a56f0acf7beb82b4a5b177e9bea Change-Id: Id517e5598bd7a3e1870b0cb3d7d8da7375f9403a
45 lines
No EOL
733 B
JavaScript
45 lines
No EOL
733 B
JavaScript
/*!
|
||
* OOUI v0.44.2
|
||
* https://www.mediawiki.org/wiki/OOUI
|
||
*
|
||
* Copyright 2011–2022 OOUI Team and other contributors.
|
||
* Released under the MIT license
|
||
* http://oojs.mit-license.org
|
||
*
|
||
* Date: 2022-07-27T15:22:47Z
|
||
*/
|
||
( function ( OO ) {
|
||
|
||
'use strict';
|
||
|
||
/**
|
||
* @class
|
||
* @extends OO.ui.Theme
|
||
*
|
||
* @constructor
|
||
*/
|
||
OO.ui.ApexTheme = function OoUiApexTheme() {
|
||
// Parent constructor
|
||
OO.ui.ApexTheme.super.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
|