Can't figure out why page loads at bottom? Angular UI-Router autoscroll Issue

前端 未结 5 2044
眼角桃花
眼角桃花 2020-12-13 14:18

For the life of me, I cannot figure out why this home page loads at the bottom. Is this an angular ui-router, angular, javascript or CSS issue? I\'ve been stuck on this fo

5条回答
  •  旧巷少年郎
    2020-12-13 15:05

    in the run block add:

    $rootScope.$on('$stateChangeSuccess', function () {
      $anchorScroll();
     });
    

    Of course you have to inject the $anchorScroll dependency

提交回复
热议问题