Skip to content

Commit

Permalink
Expose the original event data in the action wheel event.
Browse files Browse the repository at this point in the history
This was intended, but since the `event` key was used, and that is
populated with the event name, it wasn't actually exposed.
  • Loading branch information
manthey committed Sep 15, 2019
1 parent 5113554 commit 978585a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapInteractor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1759,7 +1759,7 @@ var mapInteractor = function (args) {
break;
}
m_this.map().geoTrigger(geo_event.actionwheel, {
state: m_this.state(), mouse: m_this.mouse(), event: evt});
state: m_this.state(), mouse: m_this.mouse(), eventData: evt});
}

// reset the queue
Expand Down

0 comments on commit 978585a

Please sign in to comment.