Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 6f3fc60

Browse files
author
Jaanek Oja
committedSep 9, 2020
suppress esc key only
1 parent f6022c9 commit 6f3fc60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/drawer/drawer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export class MdcDrawer extends MDCComponent<MDCDismissibleDrawerFoundation | MDC
226226
(fromEvent(this._elementRef.nativeElement, 'keydown') as Observable<KeyboardEvent>)
227227
.pipe(takeUntil(this._destroyed)).subscribe(event => this._ngZone.run(() => {
228228
this._foundation.handleKeydown(event);
229-
if (this.modal) {
229+
if (this.modal && (event.key === "Escape" || event.key === "Esc")) {
230230
event.stopPropagation();
231231
event.preventDefault();
232232
}

0 commit comments

Comments
 (0)