We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23baba7 commit 1abbc8dCopy full SHA for 1abbc8d
CHANGELOG.md
@@ -12,6 +12,7 @@ New features:
12
Bugfixes:
13
14
Other improvements:
15
+- Add auxclick to MouseEvent (#18 by @joe-op)
16
17
## [v3.0.0](https://github.com/purescript-web/purescript-web-uievents/releases/tag/v3.0.0) - 2021-02-26
18
src/Web/UIEvent/MouseEvent/EventTypes.purs
@@ -2,6 +2,9 @@ module Web.UIEvent.MouseEvent.EventTypes where
2
3
import Web.Event.Event (EventType(..))
4
5
+auxclick :: EventType
6
+auxclick = EventType "auxclick"
7
+
8
click :: EventType
9
click = EventType "click"
10
0 commit comments