remove tv when going to dialog from home, hide volume control when going to tv from home (fixes #1794)

This commit is contained in:
rolux 2013-08-10 08:58:22 +00:00
commit 1de58ea400
6 changed files with 9 additions and 7 deletions

View file

@ -174,6 +174,7 @@ pandora.ui.tv = function() {
that.mute = function() {
muted = true;
$player && $player.options({muted: muted});
return that;
};
that.showScreen = function() {
@ -185,6 +186,7 @@ pandora.ui.tv = function() {
that.unmute = function() {
$player && $player.options({muted: pandora.user.ui.videoMuted});
muted = false;
return that;
};
return that;