Commit 2f811375 by Torkel Ödegaard

Moving templating to feature to feature folder

parent 8d7390e7
...@@ -10,7 +10,6 @@ define([ ...@@ -10,7 +10,6 @@ define([
'./graphiteImport', './graphiteImport',
'./playlistCtrl', './playlistCtrl',
'./inspectCtrl', './inspectCtrl',
'./templateEditorCtrl',
'./sharePanelCtrl', './sharePanelCtrl',
'./jsonEditorCtrl', './jsonEditorCtrl',
], function () {}); ], function () {});
define([ define([
'./panellinkeditor/module', './panellinkeditor/module',
'./annotations/annotationsSrv', './annotations/annotationsSrv',
'./templating/templateSrv',
'./graphite/datasource', './graphite/datasource',
'./influxdb/datasource', './influxdb/datasource',
'./opentsdb/datasource', './opentsdb/datasource',
......
define([ define([
'angular', 'angular',
'lodash', 'lodash',
'./editorCtrl',
'./templateValuesSrv',
], ],
function (angular, _) { function (angular, _) {
'use strict'; 'use strict';
......
...@@ -3,8 +3,6 @@ define([ ...@@ -3,8 +3,6 @@ define([
'./utilSrv', './utilSrv',
'./datasourceSrv', './datasourceSrv',
'./timeSrv', './timeSrv',
'./templateSrv',
'./templateValuesSrv',
'./panelSrv', './panelSrv',
'./timer', './timer',
'./keyboardManager', './keyboardManager',
......
define([ define([
'mocks/dashboard-mock', 'mocks/dashboard-mock',
'lodash', 'lodash',
'services/templateSrv' 'features/templating/templateSrv'
], function(dashboardMock) { ], function(dashboardMock) {
'use strict'; 'use strict';
......
...@@ -2,7 +2,7 @@ define([ ...@@ -2,7 +2,7 @@ define([
'mocks/dashboard-mock', 'mocks/dashboard-mock',
'helpers', 'helpers',
'moment', 'moment',
'services/templateValuesSrv' 'features/templating/templateValuesSrv'
], function(dashboardMock, helpers, moment) { ], function(dashboardMock, helpers, moment) {
'use strict'; 'use strict';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment