From 192d0d024f0ff5817c9d0121ed0c08fd986226c6 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Mon, 28 Nov 2016 16:11:42 -0500 Subject: [PATCH] Fixed small error in music player track selection --- public/js/music.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/music.js b/public/js/music.js index 367e027..b4c3d49 100755 --- a/public/js/music.js +++ b/public/js/music.js @@ -28,7 +28,7 @@ $(document).ready(function() { pauseOtherPlayers: true }); - $('.now-playing-list .music-track').on('click', function() { + $('.now-playing-list .music-track').on('click', function(e) { // change the audio source changeAudioSources(e); });