Skip to content

Commit

Permalink
noop
Browse files Browse the repository at this point in the history
  • Loading branch information
gdh1995 committed Sep 25, 2023
1 parent b7484e1 commit 050c471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/options_popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PopExclusionRulesOption extends ExclusionRulesOption_ {
override init_ (element: HTMLElement): void {
super.init_(element)
this.$list_.onmousedown = (event: MouseEventToPrevent): void => {
event.detail > 1 && (event.target as EnsuredMountedElement).localName !== "input" && event.preventDefault()
event.detail > 1 && (event.target as EnsuredMountedElement).localName !== "input" && prevent_(event)
}
}
override addRule_ (_pattern: string, autoFocus?: false): void {
Expand Down

0 comments on commit 050c471

Please sign in to comment.