diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-05 19:01:15 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-08-05 19:01:15 +0000 |
commit | 3ebbc1c3886a67dcc83ca4f906bdd375d599e86b (patch) | |
tree | c86e6084b49cacdf84ff0eb4527d6f4aeabd3f4f /js/userdesign.go.js | |
parent | cd71f9cc51f77b6b8e3b11c34cb7523f36339cea (diff) | |
parent | c3a522623c3a0628c33407ee01b16e189c44bba5 (diff) |
Merge branch '0.8.x' into twitter-oauth
Diffstat (limited to 'js/userdesign.go.js')
-rw-r--r-- | js/userdesign.go.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/js/userdesign.go.js b/js/userdesign.go.js index 70dd9c7de..c53569bea 100644 --- a/js/userdesign.go.js +++ b/js/userdesign.go.js @@ -27,13 +27,14 @@ $(document).ready(function() { } } + /* rgb2hex written by R0bb13 <robertorebollo@gmail.com> */ function rgb2hex(rgb) { rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/); - function hex(x) { - hexDigits = new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"); - return isNaN(x) ? "00" : hexDigits[(x - x % 16) / 16] + hexDigits[x % 16]; - } - return "#" + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]); + return '#' + dec2hex(rgb[1]) + dec2hex(rgb[2]) + dec2hex(rgb[3]); + } + function dec2hex(x) { + hexDigits = new Array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'); + return isNaN(x) ? '00' : hexDigits[(x - x % 16) / 16] + hexDigits[x % 16]; } function UpdateColors(S) { |