Open GoogleCodeExporter opened 9 years ago
Yes, has this issue been resolved?
Original comment by chandru9...@gmail.com
on 6 Aug 2011 at 1:31
Hey I found out the change necessary to permanently make it argb just like its
permanently rgb now :
Go to colorChanged event (It is in line number 525), change the line that deals
with binded hex - MAKE all.hex into all.ahex :)
Following segments will help you locate it in case line number changes
THIS is the line :
---------------START
if (bindedHex && context != bindedHex.get(0) && context != hex.get(0))
bindedHex.val(all != null ? all.ahex : '');
---------------END
THIS is the context :
---------------START
colorChanged =
function(ui, context)
{
var all = ui.val('all');
if (context != red.get(0)) red.val(all != null ? all.r : '');
if (context != green.get(0)) green.val(all != null ? all.g : '');
if (context != blue.get(0)) blue.val(all != null ? all.b : '');
if (alpha && context != alpha.get(0)) alpha.val(all != null ? Math.precision((all.a * 100) / 255, alphaPrecision) : '');
if (context != hue.get(0)) hue.val(all != null ? all.h : '');
if (context != saturation.get(0)) saturation.val(all != null ? all.s : '');
if (context != value.get(0)) value.val(all != null ? all.v : '');
if (context != hex.get(0) && (bindedHex && context != bindedHex.get(0) || !bindedHex)) hex.val(all != null ? all.hex : '');
if (bindedHex && context != bindedHex.get(0) && context != hex.get(0)) bindedHex.val(all != null ? all.ahex : '');
if (ahex && context != ahex.get(0)) ahex.val(all != null ? all.ahex.substring(6) : '');
},
---------------END
Original comment by chandru9...@gmail.com
on 6 Aug 2011 at 2:17
Original issue reported on code.google.com by
mik...@jooze.net
on 29 Jul 2011 at 7:40