oojs-ui-apex.js 697 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*!
  2. * OOjs UI v0.21.1
  3. * https://www.mediawiki.org/wiki/OOjs_UI
  4. *
  5. * Copyright 2011–2017 OOjs UI Team and other contributors.
  6. * Released under the MIT license
  7. * http://oojs.mit-license.org
  8. *
  9. * Date: 2017-04-18T23:32:49Z
  10. */
  11. ( function ( OO ) {
  12. 'use strict';
  13. /**
  14. * @class
  15. * @extends OO.ui.Theme
  16. *
  17. * @constructor
  18. */
  19. OO.ui.ApexTheme = function OoUiApexTheme() {
  20. // Parent constructor
  21. OO.ui.ApexTheme.parent.call( this );
  22. };
  23. /* Setup */
  24. OO.inheritClass( OO.ui.ApexTheme, OO.ui.Theme );
  25. /* Methods */
  26. /**
  27. * @inheritdoc
  28. */
  29. OO.ui.ApexTheme.prototype.getDialogTransitionDuration = function () {
  30. return 250;
  31. };
  32. /* Instantiation */
  33. OO.ui.theme = new OO.ui.ApexTheme();
  34. }( OO ) );