Skip to content

Commit

Permalink
fixed #7907 Calendar touchUI issue with tab key
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitfindikli committed Jul 9, 2019
1 parent 521ec6f commit 4be5857
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/app/components/calendar/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1167,10 +1167,7 @@ export class Calendar implements OnInit,OnDestroy,ControlValueAccessor {
onInputKeydown(event) {
this.isKeydown = true;
if (event.keyCode === 9) {
if (this.touchUI)
this.disableModality();
else
this.hideOverlay();
this.hideOverlay();
}
}

Expand Down

0 comments on commit 4be5857

Please sign in to comment.