瀏覽代碼

Tooltip detatch too soon on mobile click (#5598)

* Tooltip detatch too soon on mobile click

* Fixed syntax error
Loren West 9 年之前
父節點
當前提交
51940fa209
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      public/app/plugins/panel/singlestat/module.ts

+ 3 - 1
public/app/plugins/panel/singlestat/module.ts

@@ -538,7 +538,9 @@ class SingleStatCtrl extends MetricsPanelCtrl {
 
       elem.mouseleave(function() {
         if (panel.links.length === 0) { return;}
-        drilldownTooltip.detach();
+        $timeout(function() {
+          drilldownTooltip.detach();
+        });
       });
 
       elem.click(function(evt) {