Skip to content

Commit

Permalink
dev: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksey-hoffman committed Sep 4, 2021
1 parent ed3d9fa commit b4bf65b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Overlays.vue
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export default {
// return dropTargetItems
// },
handleLocalDragOverEvent (dragEvent) {
console.log('handleLocalDragOverEvent', dragEvent)
// console.log('handleLocalDragOverEvent', dragEvent)
},
handleGlobalDragOverEvent (dragEvent) {
if (!this.drag.dirItemInbound.value) {
Expand Down Expand Up @@ -307,7 +307,7 @@ export default {
},
handlerDropActions (dropEvent) {
return new Promise((resolve, reject) => {
console.log(this.inboundDragOverlayIsVisible, this.currentDragTarget, dropEvent)
// console.log(this.inboundDragOverlayIsVisible, this.currentDragTarget, dropEvent)
// Avoid triggering when overlay is not shown
// if (!this.inboundDragOverlayIsVisible) {
// reject()
Expand Down Expand Up @@ -532,7 +532,7 @@ export default {
this.resetMouseMoveEventValues()
},
mouseMoveHandler (mousemoveEvent) {
console.log('mouseMoveHandler', mousemoveEvent)
// console.log('mouseMoveHandler', mousemoveEvent)
if (this.inputState.pointer.button1) {
// TODO:
// - if cursor is over selected item,
Expand Down

0 comments on commit b4bf65b

Please sign in to comment.