Skip to content

Commit

Permalink
fix: make sure all available prop data gets passed along to any liste…
Browse files Browse the repository at this point in the history
…ners added
  • Loading branch information
sghoweri committed Sep 3, 2019
1 parent 21582d7 commit 35726a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/renderers/with-events.js
Expand Up @@ -57,7 +57,7 @@ export function withEvents(Base = HTMLElement) {

listeners.forEach(
function(listener) {
listener(this, ...props);
listener(this, props);
}.bind(this),
);
}
Expand Down

0 comments on commit 35726a0

Please sign in to comment.