diff options
author | Manuel Munz <freifunk@somakoma.de> | 2012-12-01 00:07:33 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2012-12-01 00:07:33 +0000 |
commit | f13dd6c0523aec82879fb85f4d2fc1851340b563 (patch) | |
tree | d7c458491b1b84b507d278cf10e825a94d24b315 /applications/luci-olsr/luasrc/tools | |
parent | e2bc45289e6e83611e98a9d224dfe85178718216 (diff) |
applications/luci-olsr: sync colors with map, add legend
Diffstat (limited to 'applications/luci-olsr/luasrc/tools')
-rw-r--r-- | applications/luci-olsr/luasrc/tools/olsr.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-olsr/luasrc/tools/olsr.lua b/applications/luci-olsr/luasrc/tools/olsr.lua index 45501020a..425d09a31 100644 --- a/applications/luci-olsr/luasrc/tools/olsr.lua +++ b/applications/luci-olsr/luasrc/tools/olsr.lua @@ -16,11 +16,11 @@ function etx_color(etx) local color = "#bb3333" if etx == 0 then color = "#bb3333" - elseif etx < 4 then + elseif etx < 2 then color = "#00cc00" - elseif etx < 10 then + elseif etx < 4 then color = "#ffcb05" - elseif etx < 100 then + elseif etx < 10 then color = "#ff6600" end return color |