Move Field classes to Rdbms namespace
[mediawiki.git] / resources / lib / oojs-ui / oojs-ui-apex.js
blob3fc8b45574ac0a0b37dc699b6b15d11faa35ecb7
1 /*!
2 * OOjs UI v0.19.1
3 * https://www.mediawiki.org/wiki/OOjs_UI
5 * Copyright 2011–2017 OOjs UI Team and other contributors.
6 * Released under the MIT license
7 * http://oojs.mit-license.org
9 * Date: 2017-02-08T00:38:31Z
11 ( function ( OO ) {
13 'use strict';
15 /**
16 * @class
17 * @extends OO.ui.Theme
19 * @constructor
21 OO.ui.ApexTheme = function OoUiApexTheme() {
22 // Parent constructor
23 OO.ui.ApexTheme.parent.call( this );
26 /* Setup */
28 OO.inheritClass( OO.ui.ApexTheme, OO.ui.Theme );
30 /* Methods */
32 /**
33 * @inheritdoc
35 OO.ui.ApexTheme.prototype.getDialogTransitionDuration = function () {
36 return 250;
39 /* Instantiation */
41 OO.ui.theme = new OO.ui.ApexTheme();
43 }( OO ) );