diff options
author | root <root@einstein.tg15.gathering.org> | 2015-03-31 09:12:03 +0200 |
---|---|---|
committer | root <root@einstein.tg15.gathering.org> | 2015-03-31 09:12:03 +0200 |
commit | d21ff2df4e2e7864bb15e8689eedd73f9671006c (patch) | |
tree | 10cd6f5354afde22a598aa1189a85a94a29f88a9 | |
parent | 441cb1faf503520215d6171c8b04c4fd0089cae7 (diff) |
Bump ping timeout
-rw-r--r-- | web/nms.gathering.org/ping.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/nms.gathering.org/ping.js b/web/nms.gathering.org/ping.js index 75d8190..709bf80 100644 --- a/web/nms.gathering.org/ping.js +++ b/web/nms.gathering.org/ping.js @@ -127,7 +127,7 @@ function rgb_from_latency(latency_ms) { } // 10ms is max - var l = latency_ms / 10.0; + var l = latency_ms / 30.0; if (l >= 2.0) { return 'rgb(255, 0, 0)'; } else if (l >= 1.0) { |