Release notes: https://git.wikimedia.org/blob/oojs%2Fui.git/v0.16.2/History.md Change-Id: I5c7402606bbc5ea1c20548b7eae657338b4ae151
34 lines
572 B
JavaScript
34 lines
572 B
JavaScript
/*!
|
||
* OOjs UI v0.16.2
|
||
* https://www.mediawiki.org/wiki/OOjs_UI
|
||
*
|
||
* Copyright 2011–2016 OOjs UI Team and other contributors.
|
||
* Released under the MIT license
|
||
* http://oojs.mit-license.org
|
||
*
|
||
* Date: 2016-03-08T21:46:49Z
|
||
*/
|
||
( 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 );
|
||
|
||
/* Instantiation */
|
||
|
||
OO.ui.theme = new OO.ui.ApexTheme();
|
||
|
||
}( OO ) );
|