Moving templating to feature to feature folder

pull/1019/merge
Torkel Ödegaard 11 years ago
parent 8d7390e765
commit 2f811375bb
  1. 1
      src/app/controllers/all.js
  2. 1
      src/app/features/all.js
  3. 0
      src/app/features/templating/editorCtrl.js
  4. 2
      src/app/features/templating/templateSrv.js
  5. 0
      src/app/features/templating/templateValuesSrv.js
  6. 2
      src/app/services/all.js
  7. 2
      src/test/specs/templateSrv-specs.js
  8. 2
      src/test/specs/templateValuesSrv-specs.js

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

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

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

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

@ -1,7 +1,7 @@
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([
'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';

Loading…
Cancel
Save