refactoring: moving stuff around

This commit is contained in:
Torkel Ödegaard
2015-10-30 14:04:25 +01:00
parent 4dcd2ceb01
commit 39bc3cb532
17 changed files with 18 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
define([
'./panelMenu',
'./panelDirective',
'./panelSrv',
'./panelHelper',
'./soloPanelCtrl',
'./panel_menu',
'./panel_directive',
'./panel_srv',
'./panel_helper',
'./solo_panel_ctrl',
], function () {});

View File

@@ -3,7 +3,7 @@ define([
'app/app',
'lodash',
'config',
'app/components/panelmeta',
'app/features/panel/panel_meta',
],
function (angular, app, _, config, PanelMeta) {
'use strict';

View File

@@ -4,8 +4,8 @@ define([
'lodash',
'kbn',
'moment',
'app/components/timeSeries',
'app/components/panelmeta',
'app/core/time_series',
'app/features/panel/panel_meta',
'./seriesOverridesCtrl',
'./graph',
'./legend',

View File

@@ -3,8 +3,8 @@ define([
'app/app',
'lodash',
'kbn',
'app/components/timeSeries',
'app/components/panelmeta',
'app/core/time_series',
'app/features/panel/panel_meta',
'./singleStatPanel',
],
function (angular, app, _, kbn, TimeSeries, PanelMeta) {

View File

@@ -3,7 +3,7 @@ define([
'app/app',
'lodash',
'require',
'app/components/panelmeta',
'app/features/panel/panel_meta',
],
function (angular, app, _, require, PanelMeta) {
'use strict';

View File

@@ -1,5 +1,5 @@
define([
'app/components/timeSeries'
'app/core/time_series'
], function(TimeSeries) {
'use strict';

View File

@@ -1,7 +1,7 @@
define([
'./helpers',
'app/features/panel/panelSrv',
'app/features/panel/panelHelper',
'app/features/panel/panel_srv',
'app/features/panel/panel_helper',
'app/panels/graph/module'
], function(helpers) {
'use strict';

View File

@@ -2,7 +2,7 @@ define([
'./helpers',
'angular',
'jquery',
'app/components/timeSeries',
'app/core/time_series',
'app/panels/graph/graph'
], function(helpers, angular, $, TimeSeries) {
'use strict';

View File

@@ -1,6 +1,6 @@
define([
'./helpers',
'app/features/panel/panelSrv',
'app/features/panel/panel_srv',
], function() {
'use strict';

View File

@@ -1,7 +1,7 @@
define([
'./helpers',
'app/features/panel/panelSrv',
'app/features/panel/panelHelper',
'app/features/panel/panel_srv',
'app/features/panel/panel_helper',
'app/panels/singlestat/module'
], function(helpers) {
'use strict';