Skip to content

Commit

Permalink
fix(events): got-/lostpointercapture bubble (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Sep 13, 2020
1 parent 6502455 commit 3154dc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/event-map.js
Expand Up @@ -332,11 +332,11 @@ export const eventMap = {
},
gotPointerCapture: {
EventType: 'PointerEvent',
defaultInit: {bubbles: false, cancelable: false, composed: true},
defaultInit: {bubbles: true, cancelable: false, composed: true},
},
lostPointerCapture: {
EventType: 'PointerEvent',
defaultInit: {bubbles: false, cancelable: false, composed: true},
defaultInit: {bubbles: true, cancelable: false, composed: true},
},
// history events
popState: {
Expand Down

0 comments on commit 3154dc4

Please sign in to comment.