diff options
author | Stephan Schwaer | 2016-03-15 15:07:57 +0100 |
---|---|---|
committer | Stephan Schwaer | 2016-03-15 15:07:57 +0100 |
commit | c3ae13f5f984fc32fc95c8c39e1bb31d498f6334 (patch) | |
tree | e36eda453c05c068800befc1c07f152e5cdc702c /static | |
parent | Links turn green and red depending on client download rate. (diff) | |
parent | Fix reference to nonexistent distance property of node (diff) | |
download | dnbd3-status-c3ae13f5f984fc32fc95c8c39e1bb31d498f6334.tar.gz dnbd3-status-c3ae13f5f984fc32fc95c8c39e1bb31d498f6334.tar.xz dnbd3-status-c3ae13f5f984fc32fc95c8c39e1bb31d498f6334.zip |
Merge branch 'master' of git.openslx.org:dnbd3-status
Diffstat (limited to 'static')
-rw-r--r-- | static/status-dnbd3.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/status-dnbd3.html b/static/status-dnbd3.html index 6f92c97..0971f8a 100644 --- a/static/status-dnbd3.html +++ b/static/status-dnbd3.html @@ -259,7 +259,7 @@ function myGraph(el) { // Force of center gravitation .gravity(.12) // Distance of the links - .distance(function(bla) { return bla.source.distance + bla.target.distance; }) + .distance(function(bla) { return 4; }) // Strength of the links .linkStrength(0.3) // Force with which the links "pull" |