This repository has been archived by the owner on Mar 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
77 lines (53 loc) · 3.09 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict';
module.exports = {
name: require('./package').name,
//this is for live reload ember on change
/*
isDevelopingAddon() {
return true;
},
*/
//addin dependecys into the project
included() {
this._super.included.apply(this, arguments);
this.import('node_modules/startbootstrap-sb-admin-2/css/sb-admin-2.css');
this.import('node_modules/startbootstrap-sb-admin-2/js/sb-admin-2.js');
this.import('node_modules/startbootstrap-sb-admin-2/vendor/fontawesome-free/css/all.css');
this.import('node_modules/startbootstrap-sb-admin-2/vendor/fontawesome-free/js/all.js');
this.import('node_modules/apexcharts/dist/apexcharts.js');
this.import('node_modules/moment/moment.js');
this.import('node_modules/chart.js/dist/Chart.js');
this.import('node_modules/chart.js/dist/Chart.css');
this.import('node_modules/chartjs-plugin-labels/build/chartjs-plugin-labels.min.js');
this.import('node_modules/chartjs-plugin-datalabels/dist/chartjs-plugin-datalabels.js');
this.import('node_modules/bootstrap/dist/css/bootstrap.css');
this.import('node_modules/chartjs-plugin-streaming/dist/chartjs-plugin-streaming.js');
this.import('node_modules/hammerjs/hammer.js');
this.import('node_modules/chartjs-plugin-zoom/dist/chartjs-plugin-zoom.js');
this.import('node_modules/chartjs-plugin-colorschemes/dist/chartjs-plugin-colorschemes.js');
//new new labels piechart
this.import('node_modules/chartjs-plugin-piechart-outlabels/dist/chartjs-plugin-piechart-outlabels.js');
//pictures for the different widget infos.
this.import('vendor/assets/images/activeclassinstances_info.jpg');
this.import('vendor/assets/images/aggregatedresponsetime_info.jpg');
this.import('vendor/assets/images/eventlog_info.jpg');
this.import('vendor/assets/images/operationresponsetime_info.jpg');
this.import('vendor/assets/images/programminglanguagesoccurrence_info.jpg');
this.import('vendor/assets/images/ramcpu_info.jpg');
this.import('vendor/assets/images/totaloverview_info.jpg');
this.import('vendor/assets/images/totalrequests_info.jpg');
this.import('vendor/assets/images/aggregatedresponsetime_piechart_info.jpg');
this.import('vendor/assets/images/operationresponsetime_table_info.jpg');
//pictures for the dashboard settings popups.
this.import('vendor/assets/images/widgetpreview/activeclassinstances.png');
this.import('vendor/assets/images/widgetpreview/aggregatedresponsetime_piechart.png');
this.import('vendor/assets/images/widgetpreview/aggregatedresponsetime.png');
this.import('vendor/assets/images/widgetpreview/eventlog.png');
this.import('vendor/assets/images/widgetpreview/operationresponsetime_table.png');
this.import('vendor/assets/images/widgetpreview/operationresponsetime.png');
this.import('vendor/assets/images/widgetpreview/programminglanguagesoccurrence.png');
this.import('vendor/assets/images/widgetpreview/ramcpu.png');
this.import('vendor/assets/images/widgetpreview/totaloverview.png');
this.import('vendor/assets/images/widgetpreview/totalrequests.png');
}
};