diff options
-rw-r--r-- | static/status-dnbd3.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/status-dnbd3.html b/static/status-dnbd3.html index 0971f8a..6b4e68d 100644 --- a/static/status-dnbd3.html +++ b/static/status-dnbd3.html @@ -157,8 +157,8 @@ function myGraph(el) { // link.downloadRate = 30000; // fading speed - var fadingValue = (link.colorIntensity*0,85) - 200; - if (fadingValue > 0) link.colorIntensity = fadingValue; + var fadingValue = (link.colorIntensity*0,85) + 100; + if (fadingValue > 0) link.colorIntensity -= fadingValue; if (link.colorIntensity < 0) link.colorIntensity = 0; link.colorIntensity += link.downloadRate; |