blob: 7308995256dd9a38ff56924c89d48f6995b51cfe [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: {
21 width: 50,
22 height: 50,
23 x: -25,
24 y: -25
Matteo Scandolo7dbb1912016-01-25 14:11:10 -080025 }
Matteo Scandolobe9b13d2016-01-21 11:21:03 -080026 })
27
28}());