File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ angular.module('openshiftConsole')
10
10
template : '<div ng-show="totalWeight" ng-attr-id="{{chartId}}"></div>' ,
11
11
link : function ( $scope ) {
12
12
var chart , config ;
13
+ var mobile = window . matchMedia ( "(max-width: 400px)" ) . matches ;
13
14
14
15
$scope . chartId = _ . uniqueId ( 'route-service-chart-' ) ;
15
16
@@ -20,16 +21,15 @@ angular.module('openshiftConsole')
20
21
} ,
21
22
legend : {
22
23
show : true ,
23
- position : 'right'
24
+ position : mobile ? 'bottom' : 'right'
24
25
} ,
25
26
pie : {
26
27
label : {
27
28
show : false
28
29
}
29
30
} ,
30
31
size : {
31
- height : 115 ,
32
- width : 260
32
+ height : mobile ? 150 : 115
33
33
} ,
34
34
data : {
35
35
type : "pie" ,
@@ -69,14 +69,17 @@ angular.module('openshiftConsole')
69
69
70
70
function updateChart ( ) {
71
71
var data = {
72
- columns : [ ]
72
+ columns : [ ] ,
73
+ names : { }
73
74
} ;
74
75
75
76
if ( $scope . route ) {
76
77
data . columns . push ( getData ( $scope . route . spec . to ) ) ;
78
+ data . names [ $scope . route . spec . to . name ] = _ . trunc ( $scope . route . spec . to . name , { length : 30 } ) ;
77
79
$scope . totalWeight = $scope . route . spec . to . weight ;
78
80
_ . each ( $scope . route . spec . alternateBackends , function ( routeTarget ) {
79
81
data . columns . push ( getData ( routeTarget ) ) ;
82
+ data . names [ routeTarget . name ] = _ . trunc ( routeTarget . name , { length : 30 } ) ;
80
83
$scope . totalWeight += routeTarget . weight ;
81
84
} ) ;
82
85
}
Original file line number Diff line number Diff line change @@ -124,10 +124,10 @@ <h4>Traffic</h4>
124
124
This route splits traffic across multiple services.
125
125
</ div >
126
126
</ div >
127
- < div class ="col-sm-5 col-sm -push-7 mar-bottom-lg ">
127
+ < div class ="col-sm-12 col-md- 5 col-md -push-7 mar-bottom-lg ">
128
128
< route-service-pie route ="route "> </ route-service-pie >
129
129
</ div >
130
- < div class ="col -sm-7 col-sm -pull-5 ">
130
+ < div class ="cold -sm-12 col-md- 7 col-md -pull-5 ">
131
131
< table class ="table table-bordered ">
132
132
< thead >
133
133
< tr >
You can’t perform that action at this time.
0 commit comments