Skip to content

Commit 363fd2a

Browse files
author
Stefan Bauckmeier
committed
[01] fix small typo on
1 parent 92b6307 commit 363fd2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

01 - JavaScript Drum Kit/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
function showSoundIsPlayingOn(soundElement) {
7777
soundElement.classList.add('playing');
7878
soundElement.addEventListener('transitionend', function(event) {
79-
if (event.propertyName == 'transform') { return; }
79+
if (event.propertyName != 'transform') { return; }
8080
event.currentTarget.classList.remove('playing');
8181
});
8282
}

0 commit comments

Comments
 (0)