Do not try to load radio playlists in the browser when clicking on a radio

This commit is contained in:
François-Xavier Thomas
2019-07-02 23:00:03 +02:00
parent 760a6e957a
commit 9ff5536d9b
@@ -21,8 +21,9 @@
}
}
$('.radio-play').on('click', function() {
$('.radio-play').on('click', function(evt) {
top.playQueue.onPlayInternetRadio($(this).data("id"), 0);
evt.preventDefault();
});
}