Removed zabbixHelperSrv from queryCtrl

This commit is contained in:
Alexander Zobnin
2016-01-17 21:28:42 +03:00
parent 038e5a2492
commit c41cdfc639

View File

@@ -1,7 +1,6 @@
define([ define([
'angular', 'angular',
'lodash', 'lodash',
'./helperFunctions',
'./utils' './utils'
], ],
function (angular, _) { function (angular, _) {
@@ -10,7 +9,7 @@ define([
var module = angular.module('grafana.controllers'); var module = angular.module('grafana.controllers');
var targetLetters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; var targetLetters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
module.controller('ZabbixAPIQueryCtrl', function ($scope, $sce, templateSrv, zabbixHelperSrv, Utils) { module.controller('ZabbixAPIQueryCtrl', function ($scope, $sce, templateSrv, Utils) {
var zabbixCache = $scope.datasource.zabbixCache; var zabbixCache = $scope.datasource.zabbixCache;