Fix error where typ and from could have the same value

pull/16/head
René Løwe Jacobsen 9 years ago
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…
Cancel
Save