From 5aa5b997fe9dc785614bf61929c7e7de931af6ab Mon Sep 17 00:00:00 2001 From: David Back Date: Mon, 7 Jan 2019 11:33:08 -0800 Subject: [PATCH] remove logs --- scripts/system/html/js/draggableNumber.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/system/html/js/draggableNumber.js b/scripts/system/html/js/draggableNumber.js index b63b6e4688..0d6af01ebd 100644 --- a/scripts/system/html/js/draggableNumber.js +++ b/scripts/system/html/js/draggableNumber.js @@ -139,7 +139,6 @@ DraggableNumber.prototype = { }, inputChange: function() { - console.log("DBACK TEST inputChange1 elInput " + this.elInput.value + " elText " + this.elText.firstChild.data + " min " + this.min + " max " + this.max + " step " + this.step); let value = this.elInput.value; if (this.max !== undefined) { value = Math.min(this.max, value); @@ -147,9 +146,7 @@ DraggableNumber.prototype = { if (this.min !== undefined) { value = Math.max(this.min, value); } - console.log("DBACK TEST inputChange2 elInput " + this.elInput.value + " elText " + this.elText.firstChild.data + " min " + this.min + " max " + this.max + " step " + this.step); this.setValue(value); - console.log("DBACK TEST inputChange3 elInput " + this.elInput.value + " elText " + this.elText.firstChild.data + " min " + this.min + " max " + this.max + " step " + this.step); }, inputBlur: function(ev) {