Moving templating to feature to feature folder

This commit is contained in:
Torkel Ödegaard
2014-12-31 09:34:54 +01:00
parent 8d7390e765
commit 2f811375bb
8 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,6 @@ define([
'./graphiteImport',
'./playlistCtrl',
'./inspectCtrl',
'./templateEditorCtrl',
'./sharePanelCtrl',
'./jsonEditorCtrl',
], function () {});

View File

@@ -1,6 +1,7 @@
define([
'./panellinkeditor/module',
'./annotations/annotationsSrv',
'./templating/templateSrv',
'./graphite/datasource',
'./influxdb/datasource',
'./opentsdb/datasource',

View File

@@ -1,6 +1,8 @@
define([
'angular',
'lodash',
'./editorCtrl',
'./templateValuesSrv',
],
function (angular, _) {
'use strict';

View File

@@ -3,8 +3,6 @@ define([
'./utilSrv',
'./datasourceSrv',
'./timeSrv',
'./templateSrv',
'./templateValuesSrv',
'./panelSrv',
'./timer',
'./keyboardManager',

View File

@@ -1,7 +1,7 @@
define([
'mocks/dashboard-mock',
'lodash',
'services/templateSrv'
'features/templating/templateSrv'
], function(dashboardMock) {
'use strict';

View File

@@ -2,7 +2,7 @@ define([
'mocks/dashboard-mock',
'helpers',
'moment',
'services/templateValuesSrv'
'features/templating/templateValuesSrv'
], function(dashboardMock, helpers, moment) {
'use strict';