fix(activator): ensure links active during transition

This commit is contained in:
Adam Bradley
2015-09-23 20:32:46 -05:00
parent 3f7b3aadef
commit 1a48cbec96
7 changed files with 42 additions and 13 deletions

View File

@@ -14,8 +14,8 @@ export class Transition extends Animation {
super();
// get the entering and leaving items
let enteringView = this.entering = nav.getStagedenteringView();
let leavingView = this.leaving = nav.getStagedleavingView();
let enteringView = this.entering = nav.getStagedEnteringView();
let leavingView = this.leaving = nav.getStagedLeavingView();
// create animation for the entering item's "ion-view" element
this.enteringView = new Animation(enteringView.viewElementRef());