This commit is contained in:
Tim Wijma
2022-11-03 17:40:22 +01:00
parent 03d19a2544
commit ed2d25ce33
4 changed files with 16 additions and 1 deletions

View File

@@ -126,4 +126,12 @@ function updateSort(sort){
filters.sorted = sort;
$(window).trigger("filter");
showFeeds()
}
}
$(".pause-btn").on("click", function() {
if($(".pause-btn").html() == "pause") { // Unpaused to paused
$(".pause-btn").html("play_arrow")
} else { // Paused to unpaused
$(".pause-btn").html("pause")
}
})