1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Cast updates

This commit is contained in:
Tim Hobbs 2014-04-15 20:49:49 -07:00
parent 9d82e0b573
commit 16f2e53459
3 changed files with 398 additions and 419 deletions

View file

@ -62,6 +62,9 @@
if (currentPlayer) {
currentPlayer.unMute();
$(this).hide();
$('.muteButton', elem).show();
}
});
@ -69,6 +72,9 @@
if (currentPlayer) {
currentPlayer.mute();
$(this).hide();
$('.unmuteButton', elem).show();
}
});
@ -83,6 +89,9 @@
if (currentPlayer) {
currentPlayer.pause();
$(this).hide();
$('.unpauseButton', elem).show();
}
});
@ -90,6 +99,9 @@
if (currentPlayer) {
currentPlayer.unpause();
$(this).hide();
$('.pauseButton', elem).show();
}
});