| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- (function (factory) {
- if (typeof module === "object" && typeof module.exports === "object") {
- var v = factory(require, exports);
- if (v !== undefined) module.exports = v;
- }
- else if (typeof define === "function" && define.amd) {
- define(["require", "exports", "../animations/animation", "./transition"], factory);
- }
- })(function (require, exports) {
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var animation_1 = require("../animations/animation");
- var transition_1 = require("./transition");
- /**
- * @hidden
- */
- var PageTransition = (function (_super) {
- __extends(PageTransition, _super);
- function PageTransition() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- PageTransition.prototype.init = function () {
- var _this = this;
- if (this.enteringView) {
- this.enteringPage = new animation_1.Animation(this.plt, this.enteringView.pageRef());
- this.add(this.enteringPage.beforeAddClass('show-page'));
- // Resize content before transition starts
- this.beforeAddRead(function () {
- _this.enteringView.readReady.emit();
- });
- this.beforeAddWrite(function () {
- _this.enteringView.writeReady.emit();
- });
- }
- };
- PageTransition.prototype.destroy = function () {
- _super.prototype.destroy.call(this);
- this.enteringPage && this.enteringPage.destroy();
- this.enteringPage = null;
- };
- return PageTransition;
- }(transition_1.Transition));
- exports.PageTransition = PageTransition;
- });
- //# sourceMappingURL=page-transition.js.map
|