Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Albrecht <ryan.albrecht@sentry.io>
  • Loading branch information
mydea and ryan953 committed May 9, 2023
1 parent 998906e commit 1ef65cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ <h1 id="h2">Bottom</h1>
});
document.getElementById('mutationIgnoreButton').addEventListener('click', () => {
setTimeout(() => {
document.getElementById('out').innerHTML += 'mutationButton clicked<br>';
document.getElementById('out').innerHTML += 'mutationIgnoreButton clicked<br>';
}, 400);
});
document.getElementById('mutationDiv').addEventListener('click', () => {
setTimeout(() => {
document.getElementById('out').innerHTML += 'mutationButton clicked<br>';
document.getElementById('out').innerHTML += 'mutationDiv clicked<br>';
}, 400);
});
document.getElementById('mutationButtonLate').addEventListener('click', () => {
Expand Down

0 comments on commit 1ef65cc

Please sign in to comment.