wiki.techinc.nl/resources/lib/oojs-ui/oojs-ui-apex.js
James D. Forrester 5b2b8d544b OOjs UI: Bring forward upstream fix for WikimediaUI colour issue
* 4412e21bef698d76ad73b98c33a177cf4b9e7466
  WikimediaUI theme: Fix regression on disabled border

Bug: T172402
Change-Id: Ibf1335313505af2abb9ba69314c427cffc79e266
2017-08-03 12:39:55 -07:00

45 lines
No EOL
738 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*!
* OOjs UI v0.22.4
* https://www.mediawiki.org/wiki/OOjs_UI
*
* Copyright 20112017 OOjs UI Team and other contributors.
* Released under the MIT license
* http://oojs.mit-license.org
*
* Date: 2017-08-03T19:36:51Z
*/
( 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