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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104 | 1×
1×
1×
| (function ()
{
'use strict';
angular
.module('app.components', [
'app.components.cards',
'app.components.charts.c3',
'app.components.charts.chart-js',
'app.components.charts.chartist',
'app.components.charts.nvd3',
'app.components.custom-directives',
'app.components.maps',
'app.components.price-tables',
'app.components.tables.simple-table',
'app.components.tables.datatable',
'app.components.widgets',
'app.components.material-docs'
])
.config(config);
/** @ngInject */
function config(msNavigationServiceProvider)
{
// Navigation
msNavigationServiceProvider.saveItem('components', {
title : 'COMPONENTS',
group : true,
weight: 4
});
msNavigationServiceProvider.saveItem('components.cards', {
title : 'Cards',
icon : 'icon-content-copy',
state : 'app.components_cards',
weight: 3
});
msNavigationServiceProvider.saveItem('components.charts', {
title : 'Charts',
icon : 'icon-poll',
weight: 4
});
msNavigationServiceProvider.saveItem('components.charts.c3', {
title: 'C3',
state: 'app.components_charts_c3'
});
msNavigationServiceProvider.saveItem('components.charts.chart-js', {
title: 'Chart.js',
state: 'app.components_charts_chart-js'
});
msNavigationServiceProvider.saveItem('components.charts.chartist', {
title: 'Chartist',
state: 'app.components_charts_chartist'
});
msNavigationServiceProvider.saveItem('components.charts.nvd3', {
title: 'nvD3',
state: 'app.components_charts_nvd3'
});
msNavigationServiceProvider.saveItem('components.maps', {
title: 'Maps',
icon : 'icon-map-marker',
state: 'app.components_maps',
weight: 5
});
msNavigationServiceProvider.saveItem('components.price-tables', {
title: 'Price Tables',
icon : 'icon-view-carousel',
state: 'app.components_price-tables',
weight: 6
});
msNavigationServiceProvider.saveItem('components.tables', {
title: 'Tables',
icon : 'icon-table-large',
weight: 7
});
msNavigationServiceProvider.saveItem('components.tables.simple-table', {
title: 'Simple Table',
state: 'app.components_tables_simple-table',
weight: 8
});
msNavigationServiceProvider.saveItem('components.tables.datatable', {
title: 'Datatable',
state: 'app.components_tables_datatable',
weight: 9
});
msNavigationServiceProvider.saveItem('components.widgets', {
title: 'Widgets',
icon : 'icon-apps',
state: 'app.components_widgets',
weight: 10
});
}
})(); |