diff --git a/dithering.js b/dithering.js index 022d2d6..e927dc2 100644 --- a/dithering.js +++ b/dithering.js @@ -11,9 +11,7 @@ const bwPalette = [ function dithering(ctx, width, height, threshold, typeIndex) { - console.log('typeindex: ', typeIndex); const type = ['binary', 'bayer', 'floysteinberg', 'atkinson'][typeIndex]; - console.log('type: ', type); const bayerThresholdMap = [ [ 15, 135, 45, 165 ], [ 195, 75, 225, 105 ], diff --git a/index.html b/index.html index 5b58b61..d72b905 100644 --- a/index.html +++ b/index.html @@ -770,7 +770,6 @@ // Easy way to update settings controlled by a textfield function updateInteger(fieldName){ - console.log('get fieldname', fieldName); settings[fieldName] = document.getElementById(fieldName).value; update(); }