• Resolved tontonmen

    (@tontonmen)


    repeat button is selected by default, as another user said : the first track play continuously instead of playing through the playlist
    but this has not been fixed ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tontonmen

    (@tontonmen)

    Hi,

    To disable repeat by default on playlists, I ended up adding the following code on the page where the player is loaded. It simulates click on repeat button to disable repeat.

    <script type="text/javascript">
    	(function($) {
        $("document").ready(function() {
        setTimeout(function() {
            $("button.jp-repeat").trigger('click');
        },10);
    });
    })(jQuery);
    </script>

    Hello

    Thanks for reaching here.
    We will check the issue and get back to you soon.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘disable repeat’ is closed to new replies.