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([
'angular',
'lodash',
@@ -8,7 +7,7 @@ define([
'./queryCtrl'
],
function (angular, _, kbn) {
//'use strict';
'use strict';
var module = angular.module('grafana.services');