Closeplayer button doesn't navigate to channel anymore

This commit is contained in:
Kasper Rynning-Tønnesen
2018-02-15 12:31:43 +01:00
parent a369fed608
commit 1c222b3812

View File

@@ -1134,7 +1134,8 @@ $(document).on("click", ".brand-logo-navigate", function(e){
Channel.onepage_load();
});
$(document).on("click", "#player_bottom_overlay", function(){
$(document).on("click", "#player_bottom_overlay", function(e){
if($(e.target).attr("id") == "closePlayer")) return;
Frontpage.to_channel(chan.toLowerCase(), false);
});