blob: 99112b1bcd290fe8b29daf6afb56189e645f5bfa [file] [log] [blame]
(function () {
'use strict';
angular.module('xos.serviceTopology')
.constant('serviceTopologyConfig', {
widthMargin: 20,
heightMargin: 30,
duration: 750,
circle: {
radius: 10,
r: 10,
selectedRadius: 15
},
square: {
width: 20,
height: 20,
x: -10,
y: -10
},
rack: {
width: 60,
height: 50,
x: -30,
y: -25
},
computeNode: {
width: 50,
height: 20,
x: -25,
y: -10
},
instance: {
width: 40,
height: 16,
x: -20,
y: -8
}
})
}());