projects
/
project
/
luci2
/
ui.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c88410
)
luci2: fix typo in LuCI2.firewall.getZoneColor()
author
Jo-Philipp Wich
<jow@openwrt.org>
Fri, 31 Jan 2014 21:38:42 +0000
(21:38 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Fri, 31 Jan 2014 21:38:42 +0000
(21:38 +0000)
luci2/htdocs/luci2/luci2.js
patch
|
blob
|
history
diff --git
a/luci2/htdocs/luci2/luci2.js
b/luci2/htdocs/luci2/luci2.js
index 8d250cd626eeb68bd939e75e91d0b82f076e2272..f41a8193ee3f6d8038b1456f96630d63a9a69a8b 100644
(file)
--- a/
luci2/htdocs/luci2/luci2.js
+++ b/
luci2/htdocs/luci2/luci2.js
@@
-1320,7
+1320,7
@@
function LuCI2()
for (var i = 0, color = '#';
i < 3;
- color += ('00' + ((hash >> i++ * 8) & 0xFF).to
zone
ing(16)).slice(-2));
+ color += ('00' + ((hash >> i++ * 8) & 0xFF).to
str
ing(16)).slice(-2));
return color;
},