Skip to content

Commit 1abbc8d

Browse files
Add auxclick to MouseEvent (#19)
* Add auxclick to MouseEvent (#18) * Update CHANGELOG.md Co-authored-by: Joe Opseth <joe.opseth@outlook.com> Co-authored-by: Thomas Honeyman <hello@thomashoneyman.com>
1 parent 23baba7 commit 1abbc8d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ New features:
1212
Bugfixes:
1313

1414
Other improvements:
15+
- Add auxclick to MouseEvent (#18 by @joe-op)
1516

1617
## [v3.0.0](https://github.com/purescript-web/purescript-web-uievents/releases/tag/v3.0.0) - 2021-02-26
1718

src/Web/UIEvent/MouseEvent/EventTypes.purs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ module Web.UIEvent.MouseEvent.EventTypes where
22

33
import Web.Event.Event (EventType(..))
44

5+
auxclick :: EventType
6+
auxclick = EventType "auxclick"
7+
58
click :: EventType
69
click = EventType "click"
710

0 commit comments

Comments
 (0)