change: removed drilldown links from extended panel menu

This commit is contained in:
Torkel Ödegaard 2015-09-19 15:59:29 +02:00
parent c7d22aafd2
commit fb767f5680

View File

@ -65,14 +65,6 @@ function (angular, $, _) {
function getExtendedMenu($scope) {
var menu = angular.copy($scope.panelMeta.extendedMenu);
if ($scope.panel.links) {
_.each($scope.panel.links, function(link) {
var info = linkSrv.getPanelLinkAnchorInfo(link, $scope.panel.scopedVars);
menu.push({text: info.title, href: info.href, target: info.target });
});
}
return menu;
}