Remove console.logs

This commit is contained in:
Rob Garrison 2018-09-16 17:30:20 -05:00
parent 06629224c6
commit 568fc336e7

View File

@ -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