From 568fc336e7f014d5fb10ea65d11b731b6041d807 Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Sun, 16 Sep 2018 17:30:20 -0500 Subject: [PATCH] Remove console.logs --- manage/config-dialog.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/manage/config-dialog.js b/manage/config-dialog.js index 63f62fd1..29e9f017 100644 --- a/manage/config-dialog.js +++ b/manage/config-dialog.js @@ -317,7 +317,6 @@ function configDialog(style) { } function updateVarOnChange() { - console.log('updateVar', this.type) if (this.type === 'number') { this.value = this.va.value = clampValue(this.value, this.va.range); } else if (this.type === 'range') { @@ -326,7 +325,6 @@ function configDialog(style) { } else { this.va.value = this.type !== 'checkbox' ? this.value : this.checked ? '1' : '0'; } - console.log(this.va.value); } // Clamp input[type=number] to a valid range