remove logging

This commit is contained in:
javl
2023-05-02 11:21:10 +02:00
parent 98b6f3093b
commit 7fc1c7df11
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -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 ],
-1
View File
@@ -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();
}