This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,11 +44,11 @@ foreign import eventPhaseIndex :: Event -> Int
4444
4545-- | Prevents the event from bubbling up to futher event listeners. Other event
4646-- | listeners on the current target will still fire.
47- foreign import stopPropagation :: Event -> Eff (dom :: DOM ) Unit
47+ foreign import stopPropagation :: forall eff . Event -> Eff (dom :: DOM | eff ) Unit
4848
4949-- | Prevents all other listeners for the event from being called. This includes
5050-- | event listeners added to the current target after the current listener.
51- foreign import stopImmediatePropagation :: Event -> Eff (dom :: DOM ) Unit
51+ foreign import stopImmediatePropagation :: forall eff . Event -> Eff (dom :: DOM | eff ) Unit
5252
5353-- | Indicates whether the event will bubble up through the DOM or not.
5454foreign import bubbles :: Event -> Boolean
@@ -57,7 +57,7 @@ foreign import bubbles :: Event -> Boolean
5757foreign import cancelable :: Event -> Boolean
5858
5959-- | Cancels the event if it can be cancelled.
60- foreign import preventDefault :: Event -> Eff (dom :: DOM ) Unit
60+ foreign import preventDefault :: forall eff . Event -> Eff (dom :: DOM | eff ) Unit
6161
6262-- | Indicates whether `preventDefault` was called on the event.
6363foreign import defaultPrevented :: Event -> Boolean
You can’t perform that action at this time.
0 commit comments