afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-06-28 01:47 am

[dw-free] color picker for journal colors displays wrong color

[commit: http://hg.dwscoalition.org/dw-free/rev/eef334d67be8]

http://bugs.dwscoalition.org/show_bug.cgi?id=1263

Fix the JavaScript color picker initialization. (Props to both [personal profile] av8rmike and [livejournal.com profile] tell_me for their
investigation!)

Patch by [personal profile] av8rmike.

Files modified:
  • htdocs/js/colorpicker.js
--------------------------------------------------------------------------------
diff -r 1372d04b4ce0 -r eef334d67be8 htdocs/js/colorpicker.js
--- a/htdocs/js/colorpicker.js	Sun Jun 28 01:37:28 2009 +0000
+++ b/htdocs/js/colorpicker.js	Sun Jun 28 01:47:04 2009 +0000
@@ -208,7 +208,7 @@ function _RGBtoHSV(p,dat) {
     for (var i = 1; i <= 3; i++) {
         if (rgb[i] > max) {
             max = rgb[i];
-            hi = 1;
+            hi = i;
         }
         if (rgb[i] < min) {
             min = rgb[i];
--------------------------------------------------------------------------------