]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Refactored rgb2hex
authorSarven Capadisli <csarven@controlyourself.ca>
Tue, 4 Aug 2009 16:26:29 +0000 (12:26 -0400)
committerSarven Capadisli <csarven@controlyourself.ca>
Tue, 4 Aug 2009 16:26:29 +0000 (12:26 -0400)
js/userdesign.go.js

index 4416dc8aeef39ffe56473a6185b244f24a5eb187..c53569beab859025860b07194dedeb6195f764b7 100644 (file)
@@ -30,11 +30,11 @@ $(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) {