From 5702c574528689627b4891e9e8f1be8e22b96bf9 Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Wed, 29 Mar 2017 16:01:27 +0200 Subject: [PATCH] panel: remove unneeded options for tooltip --- public/app/features/panel/panel_directive.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/public/app/features/panel/panel_directive.ts b/public/app/features/panel/panel_directive.ts index 5868bfcbf54..63fdba693cb 100644 --- a/public/app/features/panel/panel_directive.ts +++ b/public/app/features/panel/panel_directive.ts @@ -159,7 +159,6 @@ module.directive('grafanaPanel', function($rootScope, $document) { classes: ctrl.error ? 'drop-error' : 'drop-help', openOn: 'hover', hoverOpenDelay: 100, - remove: true, tetherOptions: { attachment: 'bottom left', targetAttachment: 'top left', @@ -195,10 +194,6 @@ module.directive('grafanaPanel', function($rootScope, $document) { if (ctrl.skippedLastRefresh) { ctrl.refresh(); } - - if (infoDrop) { - infoDrop.position(); - } }; $document.on('scroll', refreshOnScroll);