blob: 99112b1bcd290fe8b29daf6afb56189e645f5bfa [file] [log] [blame]
Matteo Scandolobe9b13d2016-01-21 11:21:03 -08001(function () {
2 'use strict';
3
4 angular.module('xos.serviceTopology')
5 .constant('serviceTopologyConfig', {
Matteo Scandoloda19dff2016-02-08 16:55:44 -08006 widthMargin: 20,
Matteo Scandolo4889f5a2016-01-25 12:00:42 -08007 heightMargin: 30,
Matteo Scandolo7dbb1912016-01-25 14:11:10 -08008 duration: 750,
9 circle: {
10 radius: 10,
Matteo Scandolo38ba3312016-02-09 16:01:49 -080011 r: 10,
Matteo Scandolo7dbb1912016-01-25 14:11:10 -080012 selectedRadius: 15
Matteo Scandoloda19dff2016-02-08 16:55:44 -080013 },
14 square: {
15 width: 20,
16 height: 20,
17 x: -10,
18 y: -10
Matteo Scandolo38ba3312016-02-09 16:01:49 -080019 },
20 rack: {
Matteo Scandolo14183932016-02-11 08:58:04 -080021 width: 60,
Matteo Scandolo38ba3312016-02-09 16:01:49 -080022 height: 50,
Matteo Scandolo14183932016-02-11 08:58:04 -080023 x: -30,
Matteo Scandolo38ba3312016-02-09 16:01:49 -080024 y: -25
Matteo Scandolo14183932016-02-11 08:58:04 -080025 },
26 computeNode: {
27 width: 50,
28 height: 20,
29 x: -25,
30 y: -10
31 },
32 instance: {
33 width: 40,
34 height: 16,
35 x: -20,
36 y: -8
Matteo Scandolo7dbb1912016-01-25 14:11:10 -080037 }
Matteo Scandolobe9b13d2016-01-21 11:21:03 -080038 })
39
40}());