[fix] oops forgot to remove the console.log(s)
This commit is contained in:
parent
4dfedb75b3
commit
020ede073b
|
|
@ -159,19 +159,16 @@ class="hidden"
|
||||||
onDragenter() {
|
onDragenter() {
|
||||||
if(!this.isDragging){
|
if(!this.isDragging){
|
||||||
this.isDragging = true;
|
this.isDragging = true;
|
||||||
console.log('ondragenter:',uuid,'->',this.isDragging);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDragleave() {
|
onDragleave() {
|
||||||
if(this.isDragging) {
|
if(this.isDragging) {
|
||||||
this.isDragging = false;
|
this.isDragging = false;
|
||||||
console.log('ondragleave: ',uuid,'->', this.isDragging);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDragover() {
|
onDragover() {
|
||||||
if(!this.isDragging) {
|
if(!this.isDragging) {
|
||||||
this.isDragging = true;
|
this.isDragging = true;
|
||||||
console.log('ondragover: ',uuid,'->',this.isDragging);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
removeUpload(tmpFilename) {
|
removeUpload(tmpFilename) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue