We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79a6bfa commit 784d029Copy full SHA for 784d029
README.md
@@ -2099,7 +2099,7 @@ Other Style Guides
2099
2100
...
2101
2102
- $(this).on('listingUpdated', function (e, listingId) {
+ $(this).on('listingUpdated', (e, listingId) => {
2103
// do something with listingId
2104
});
2105
```
@@ -2112,7 +2112,7 @@ Other Style Guides
2112
2113
2114
2115
- $(this).on('listingUpdated', function (e, data) {
+ $(this).on('listingUpdated', (e, data) => {
2116
// do something with data.listingId
2117
2118
0 commit comments