Browse Source

close modal when pressed esc key

pull/19094/head
Sinan Öztürk 2 years ago
parent
commit
dd916b2136
  1. 7
      npm/ng-packs/packages/theme-shared/src/lib/components/modal/modal-close.directive.ts

7
npm/ng-packs/packages/theme-shared/src/lib/components/modal/modal-close.directive.ts

@ -13,4 +13,9 @@ export class ModalCloseDirective {
onClick() {
this.modal?.close();
}
}
@HostListener('document:keydown.escape')
handleKeyboardEvent(event: KeyboardEvent) {
this.modal?.close();
}
}
Loading…
Cancel
Save