Skip to content

Instantly share code, notes, and snippets.

@wataruoguchi
Created May 18, 2018 04:30
Show Gist options
  • Save wataruoguchi/5524701e7e77b1d51c4f04f1ad105a1c to your computer and use it in GitHub Desktop.
Save wataruoguchi/5524701e7e77b1d51c4f04f1ad105a1c to your computer and use it in GitHub Desktop.
// Before fix
// $('#foo-btn').on('click', (e) => {
// $(e.currentTarget).text('clicked')
// })
// After fix
$('#foo-btn').on('click', (e) => {
$(e.currentTarget).text('clicked')
}).attr('data-cy', 'event-attached')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment