Release notes: https://gerrit.wikimedia.org/g/oojs/ui/+/v0.40.3/History.md Bug: T245824 Bug: T249167 Bug: T258337 Bug: T258428 Bug: T259551 Bug: T259906 Bug: T259912 Bug: T260519 Bug: T261314 Change-Id: I16b1b650eb87699a5a88bdbd9b7568a8654e1e3c Depends-On: I8e133892dbb239b2aeb152a762c8bf301c8fe7b9
45 lines
No EOL
733 B
JavaScript
45 lines
No EOL
733 B
JavaScript
/*!
|
||
* OOUI v0.40.3
|
||
* 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-09-02T15:42:49Z
|
||
*/
|
||
( 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
|