MCPcopy Create free account
hub / github.com/codemistic/Web-Development / playTrack

Function playTrack

Music App/index.js:103–108  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

101 isPlaying ? pauseTrack() : playTrack();
102}
103function playTrack(){
104 curr_track.play();
105 isPlaying = true;
106 track_art.classList.add('rotate');
107 playpause_btn.innerHTML = '<i class="fa fa-pause-circle fa-5x"></i>';
108}
109function pauseTrack(){
110 curr_track.pause();
111 isPlaying = false;

Callers 4

repeatTrackFunction · 0.85
playpauseTrackFunction · 0.85
nextTrackFunction · 0.85
prevTrackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected