Skip to content

Commit

Permalink
Merge pull request #79 from kyleguate/patch-1
Browse files Browse the repository at this point in the history
Update README.markdown
  • Loading branch information
brandonaaron authored and kadoshms committed Oct 2, 2021
1 parent 85893cc commit 5fcade9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jquery-mousewheel/README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Here is an example of using both the bind and helper method syntax:

```js
// using bind
$('#my_elem').bind('mousewheel', function(event, delta, deltaX, deltaY) {
$('#my_elem').on('mousewheel', function(event, delta, deltaX, deltaY) {
console.log(delta, deltaX, deltaY);
});

Expand Down

0 comments on commit 5fcade9

Please sign in to comment.