Skip to content

Commit

Permalink
Merge pull request #2575 from tugcekucukoglu/calendar-resize
Browse files Browse the repository at this point in the history
Fixed #2509 - Calendar resize listener bug
  • Loading branch information
tugcekucukoglu authored May 27, 2022
2 parents f2341be + ba62345 commit ca3a6b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/calendar/Calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ export default {
bindResizeListener() {
if (!this.resizeListener) {
this.resizeListener = () => {
if (this.overlayVisible) {
if (this.overlayVisible && !DomHandler.isAndroid()) {
this.overlayVisible = false;
}
};
Expand Down

0 comments on commit ca3a6b7

Please sign in to comment.