[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() {
|
||||
if(!this.isDragging){
|
||||
this.isDragging = true;
|
||||
console.log('ondragenter:',uuid,'->',this.isDragging);
|
||||
}
|
||||
},
|
||||
onDragleave() {
|
||||
if(this.isDragging) {
|
||||
this.isDragging = false;
|
||||
console.log('ondragleave: ',uuid,'->', this.isDragging);
|
||||
}
|
||||
},
|
||||
onDragover() {
|
||||
if(!this.isDragging) {
|
||||
this.isDragging = true;
|
||||
console.log('ondragover: ',uuid,'->',this.isDragging);
|
||||
}
|
||||
},
|
||||
removeUpload(tmpFilename) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue