Fixed small error in music player track selection

This commit is contained in:
Gregory Ballantine 2016-11-28 16:11:42 -05:00
parent 871bd3cd16
commit 192d0d024f

View File

@ -28,7 +28,7 @@ $(document).ready(function() {
pauseOtherPlayers: true pauseOtherPlayers: true
}); });
$('.now-playing-list .music-track').on('click', function() { $('.now-playing-list .music-track').on('click', function(e) {
// change the audio source // change the audio source
changeAudioSources(e); changeAudioSources(e);
}); });