mirror of https://github.com/grafana/grafana
Improvement to series toggling, CTRL+MouseClick on series name will now hide all others (Closes #350)
parent
2b5e974132
commit
c19fafa581
@ -0,0 +1,30 @@ |
||||
/*define([ |
||||
//'services/all'
|
||||
], function() { |
||||
'use strict'; |
||||
|
||||
describe('Graph panel controller', function() { |
||||
var _graphPanelCtrl; |
||||
|
||||
beforeEach(module('kibana.panels.graphite')); |
||||
beforeEach(module(function($provide){ |
||||
$provide.value('filterSrv',{}); |
||||
})); |
||||
|
||||
beforeEach(inject(function($controller, $rootScope) { |
||||
_graphPanelCtrl = $controller('graphite', { |
||||
$scope: $rootScope.$new() |
||||
}); |
||||
})); |
||||
|
||||
describe('init', function() { |
||||
beforeEach(function() { |
||||
}); |
||||
|
||||
it('asd', function() { |
||||
|
||||
}); |
||||
}); |
||||
}); |
||||
}); |
||||
*/ |
Loading…
Reference in new issue