Merge branch 'saas-dev-publishing' of github.com:sourcefabric/airtime into saas-dev-publishing
This commit is contained in:
commit
64f62b1994
1 changed files with 9 additions and 2 deletions
|
@ -261,8 +261,15 @@
|
||||||
$("ul.pagination li").click(function() {
|
$("ul.pagination li").click(function() {
|
||||||
buildJplayerPlaylist($(this).attr("data-page-index"), episodes);
|
buildJplayerPlaylist($(this).attr("data-page-index"), episodes);
|
||||||
$(this).siblings().removeClass('current');
|
$(this).siblings().removeClass('current');
|
||||||
$(this).addClass('current');
|
if ($(this).text() === "<") {
|
||||||
})
|
$(this).next().addClass("current");
|
||||||
|
} else if ($(this).text() ===">") {
|
||||||
|
$(this).prev().addClass("current");
|
||||||
|
} else {
|
||||||
|
$(this).addClass('current');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
//turn off player bar when podcast track is played
|
//turn off player bar when podcast track is played
|
||||||
$("a.jp-playlist-item, .jp-play").click(function() {
|
$("a.jp-playlist-item, .jp-play").click(function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue