Skip to content

Commit

Permalink
fix: check if event is cancelable before calling preventDefault (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
danhobbs75 committed Dec 12, 2022
1 parent 73346e9 commit 10bfc51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ projects/angular-resizable-element/package.json
# System Files
.DS_Store
Thumbs.db
package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,13 +321,8 @@ export class ResizableDirective implements OnInit, OnDestroy {
this.mousemove
).pipe(
tap(({ event }) => {
if (currentResize) {
try {
event.preventDefault();
} catch (e) {
// just adding try-catch not to see errors in console if there is a passive listener for same event somewhere
// browser does nothing except of writing errors to console
}
if (currentResize && event.cancelable) {
event.preventDefault();
}
}),
share()
Expand Down

0 comments on commit 10bfc51

Please sign in to comment.