Skip to content

Commit

Permalink
Fixed #62 - Menu and OverlayPanel target position miscalculated
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Oct 15, 2019
1 parent 42946e8 commit 582eae0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/menu/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
},
show(event) {
this.visible = true;
this.target = event.target;
this.target = event.currentTarget;
},
hide() {
this.visible = false;
Expand Down
2 changes: 1 addition & 1 deletion src/components/overlaypanel/OverlayPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default {
},
show(event) {
this.visible = true;
this.target = event.target;
this.target = event.currentTarget;
},
hide() {
this.visible = false;
Expand Down

0 comments on commit 582eae0

Please sign in to comment.