Skip to content

Commit

Permalink
fix: commented console.logs producing useless logs
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Aug 27, 2021
1 parent 2303e08 commit 5414151
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ Modal.prototype = {

//. setParent Event
setContainerEvent(status) {
console.log(status)
// console.log(status)
if (!this.container) return;
if (status != 'default') {

Expand All @@ -603,7 +603,7 @@ Modal.prototype = {
if (this.isHeader) {
width -= 120;
}
return this.point.x > 0 && this.point.x < width && this.point.y > 0 && this.point.y < 50
return this.point.x > 0 && this.point.x < width && this.point.y > 0 && this.point.y < 50;
},

/**
Expand Down

0 comments on commit 5414151

Please sign in to comment.