Dev#14091 Audio Album Playing Mode
Merge request reports
Activity
Filter activity
64 prev.click(); 65 }); 66 67 $(".audio_tracks_control .next").click(function(e) { 68 e.preventDefault(); 69 var next = $("li.playing").next(); 70 if (!next.length) next = $("ol li.audio_track").first(); 71 next.click(); 72 }); 73 });'); 74 75 return $this->renderAudioControl() . $this->renderTracksOf($album); 76 } 77 78 79 protected function renderAudioControl() {
Please register or sign in to reply