Move 'use strict' into function in datasource.js

This commit is contained in:
Alexander Zobnin
2015-07-20 20:36:41 +03:00
parent a657b0b7cd
commit 0df92cf580

View File

@@ -1,4 +1,3 @@
'use strict';
define([ define([
'angular', 'angular',
'lodash', 'lodash',
@@ -8,7 +7,7 @@ define([
'./queryCtrl' './queryCtrl'
], ],
function (angular, _, kbn) { function (angular, _, kbn) {
//'use strict'; 'use strict';
var module = angular.module('grafana.services'); var module = angular.module('grafana.services');