File tree 2 files changed +3
-3
lines changed
maintenance/projects/senna
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -483,8 +483,8 @@ class App extends EventEmitter {
483
483
this . extractParams ( route , path )
484
484
) ;
485
485
} )
486
- . then ( ( ) => nextScreen . evaluateStyles ( this . surfaces ) )
487
486
. then ( ( ) => nextScreen . flip ( this . surfaces ) )
487
+ . then ( ( ) => nextScreen . evaluateStyles ( this . surfaces ) )
488
488
. then ( ( ) => nextScreen . evaluateScripts ( this . surfaces ) )
489
489
. then ( ( ) => this . maybeUpdateScrollPositionState_ ( ) )
490
490
. then ( ( ) => this . syncScrollPositionSyncThenAsync_ ( ) )
Original file line number Diff line number Diff line change @@ -1656,15 +1656,15 @@ describe('App', function () {
1656
1656
this . app . navigate ( '/path2' ) . then ( ( ) => {
1657
1657
var lifecycleOrder = [
1658
1658
StubScreen . prototype . load ,
1659
- StubScreen . prototype . evaluateStyles ,
1660
1659
StubScreen . prototype . flip ,
1660
+ StubScreen . prototype . evaluateStyles ,
1661
1661
StubScreen . prototype . evaluateScripts ,
1662
1662
StubScreen . prototype . activate ,
1663
1663
StubScreen . prototype . beforeDeactivate ,
1664
1664
StubScreen2 . prototype . load ,
1665
1665
StubScreen . prototype . deactivate ,
1666
- StubScreen2 . prototype . evaluateStyles ,
1667
1666
StubScreen2 . prototype . flip ,
1667
+ StubScreen2 . prototype . evaluateStyles ,
1668
1668
StubScreen2 . prototype . evaluateScripts ,
1669
1669
StubScreen2 . prototype . activate ,
1670
1670
StubScreen . prototype . disposeInternal ,
You can’t perform that action at this time.
0 commit comments