123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import _Object$getPrototypeOf from 'babel-runtime/core-js/object/get-prototype-of';
- import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
- import _createClass from 'babel-runtime/helpers/createClass';
- import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
- import _inherits from 'babel-runtime/helpers/inherits';
-
-
- import BaseAnimator from '../../ons/base-animator';
-
- var ModalAnimator = function (_BaseAnimator) {
- _inherits(ModalAnimator, _BaseAnimator);
-
-
-
- function ModalAnimator() {
- var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
- _ref$timing = _ref.timing,
- timing = _ref$timing === undefined ? 'linear' : _ref$timing,
- _ref$delay = _ref.delay,
- delay = _ref$delay === undefined ? 0 : _ref$delay,
- _ref$duration = _ref.duration,
- duration = _ref$duration === undefined ? 0.2 : _ref$duration;
-
- _classCallCheck(this, ModalAnimator);
-
- return _possibleConstructorReturn(this, (ModalAnimator.__proto__ || _Object$getPrototypeOf(ModalAnimator)).call(this, { timing: timing, delay: delay, duration: duration }));
- }
-
-
-
-
-
- _createClass(ModalAnimator, [{
- key: 'show',
- value: function show(modal, callback) {
- callback();
- }
-
-
-
-
- }, {
- key: 'hide',
- value: function hide(modal, callback) {
- callback();
- }
- }]);
-
- return ModalAnimator;
- }(BaseAnimator);
-
- export default ModalAnimator;
|