blob: 91ea0c2d11d1a375d0e8cb7c9ff254087c2f88f9 [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,
11 selectedRadius: 15
Matteo Scandoloda19dff2016-02-08 16:55:44 -080012 },
13 square: {
14 width: 20,
15 height: 20,
16 x: -10,
17 y: -10
Matteo Scandolo7dbb1912016-01-25 14:11:10 -080018 }
Matteo Scandolobe9b13d2016-01-21 11:21:03 -080019 })
20
21}());