blob: 347feb9f4adac43f2ade106983648693b11dcb0d [file] [log] [blame]
Matteo Scandolo8a64fa42016-01-21 11:21:03 -08001(function () {
2 'use strict';
3
4 angular.module('xos.serviceTopology')
5 .constant('serviceTopologyConfig', {
6 widthMargin: 100,
Matteo Scandolo071ef462016-01-25 12:00:42 -08007 heightMargin: 30,
Matteo Scandolocb12a1a2016-01-25 14:11:10 -08008 duration: 750,
9 circle: {
10 radius: 10,
11 selectedRadius: 15
12 }
Matteo Scandolo8a64fa42016-01-21 11:21:03 -080013 })
14
15}());