color-blending-with-transparency: removed debug log statement mistakenly left out

This commit is contained in:
seven-phases-max
2013-12-03 04:58:07 +04:00
parent 28e5295dae
commit f835b1701c

View File

@@ -586,7 +586,6 @@ function colorBlend(color1, color2, mode) {
ar, cr, r = []; // result
ar = as + ab * (1 - as);
console.log(ar);
for (var i = 0; i < 3; i++) {
cb = color1.rgb[i] / 255;
cs = color2.rgb[i] / 255;