mirror of
https://github.com/PitPik/colorPicker.git
synced 2025-09-24 16:40:57 -06:00
Fix error where typ and from could have the same value
This commit is contained in:
parent
c3c9a900ac
commit
d511e2ab72
@ -214,7 +214,9 @@
|
||||
if (!ranges[typ][typ]) { // no alpha|HEX
|
||||
if (type !== typ && typ !== 'XYZ') {
|
||||
from = exceptions[typ] || 'rgb';
|
||||
colors[typ] = convert[from + '2' + typ](colors[from]);
|
||||
if (typ !== from) {
|
||||
colors[typ] = convert[from + '2' + typ](colors[from]);
|
||||
}
|
||||
}
|
||||
|
||||
if (!RND[typ]) RND[typ] = {};
|
||||
@ -688,4 +690,4 @@
|
||||
// return Math.max(min, Math.min(max, value)); // faster??
|
||||
return (value > max ? max : value < min ? min : value);
|
||||
}
|
||||
})(window);
|
||||
})(window);
|
||||
|
Loading…
x
Reference in New Issue
Block a user