فهرست منبع

dashboard: when changing route, scroll to top

Marcus Efraimsson 8 سال پیش
والد
کامیت
d83692aa80
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      public/app/core/components/scroll/scroll.ts

+ 4 - 0
public/app/core/components/scroll/scroll.ts

@@ -12,6 +12,10 @@ export function geminiScrollbar() {
         elem[0].scrollTop = 0;
       });
 
+      scope.$on('$routeUpdate', () => {
+        elem[0].scrollTop = 0;
+      });
+
       scope.$on('$destroy', () => {
         scrollbar.destroy();
       });