fix(curriculum): remove dot from player classname in step 48 of music player (#57474)

This commit is contained in:
Bella Huang
2024-12-10 12:49:01 -05:00
committed by GitHub
parent d5a6313b22
commit 15d4ac1894
@@ -7,7 +7,7 @@ dashedName: step-48
# --description--
Use `classList` and `remove()` method to remove the `.playing` class from the `playButton`, since the song will be paused at this point.
Use `classList` and `remove()` method to remove the `playing` class from the `playButton`, since the song will be paused at this point.
To finally pause the song, use the `pause()` method on the `audio` variable. `pause()` is a method of the Web Audio API for pausing music files.