Merge pull request #79 from kyleguate/patch-1

Update README.markdown
This commit is contained in:
Brandon Aaron
2013-11-08 10:57:04 -08:00
+1 -1
View File
@@ -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);
});