mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 03:13:09 +02:00
remove logs
This commit is contained in:
parent
2f99729905
commit
5aa5b997fe
1 changed files with 0 additions and 3 deletions
|
@ -139,7 +139,6 @@ DraggableNumber.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
inputChange: function() {
|
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;
|
let value = this.elInput.value;
|
||||||
if (this.max !== undefined) {
|
if (this.max !== undefined) {
|
||||||
value = Math.min(this.max, value);
|
value = Math.min(this.max, value);
|
||||||
|
@ -147,9 +146,7 @@ DraggableNumber.prototype = {
|
||||||
if (this.min !== undefined) {
|
if (this.min !== undefined) {
|
||||||
value = Math.max(this.min, value);
|
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);
|
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) {
|
inputBlur: function(ev) {
|
||||||
|
|
Loading…
Reference in a new issue