From 0df92cf580d1afbfaf564a1d041832b0d186854f Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Mon, 20 Jul 2015 20:36:41 +0300 Subject: [PATCH] Move 'use strict' into function in datasource.js --- zabbix/datasource.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zabbix/datasource.js b/zabbix/datasource.js index c75fa78..e77b35e 100644 --- a/zabbix/datasource.js +++ b/zabbix/datasource.js @@ -1,4 +1,3 @@ -'use strict'; define([ 'angular', 'lodash', @@ -8,7 +7,7 @@ define([ './queryCtrl' ], function (angular, _, kbn) { - //'use strict'; + 'use strict'; var module = angular.module('grafana.services');