فهرست منبع

scrollbar: fix Firefox scroll position restore

Alexander Zobnin 7 سال پیش
والد
کامیت
a265c77cf9
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      public/app/features/dashboard/view_state_srv.ts

+ 2 - 1
public/app/features/dashboard/view_state_srv.ts

@@ -196,9 +196,10 @@ export class DashboardViewState {
     this.oldTimeRange = ctrl.range;
     this.oldTimeRange = ctrl.range;
     this.fullscreenPanel = panelScope;
     this.fullscreenPanel = panelScope;
 
 
+    // Firefox doesn't return scrollTop postion properly if 'dash-scroll' is emitted after setViewMode()
+    this.$scope.appEvent('dash-scroll', { animate: false, pos: 0 });
     this.dashboard.setViewMode(ctrl.panel, true, ctrl.editMode);
     this.dashboard.setViewMode(ctrl.panel, true, ctrl.editMode);
     this.$scope.appEvent('panel-fullscreen-enter', { panelId: ctrl.panel.id });
     this.$scope.appEvent('panel-fullscreen-enter', { panelId: ctrl.panel.id });
-    this.$scope.appEvent('dash-scroll', { animate: false, pos: 0 });
   }
   }
 
 
   registerPanel(panelScope) {
   registerPanel(panelScope) {