* bring the play button back even if private, in private view VRFS-2383

This commit is contained in:
Seth Call 2014-10-26 11:46:33 -05:00
parent 20d5eb8648
commit 7e2b894548
1 changed files with 4 additions and 1 deletions

View File

@ -321,7 +321,10 @@
$isPrivate.removeClass('enabled')
}
else {
$feedEntry.find('.play-button').hide();
if(!isOwner())
{
$feedEntry.find('.play-button').hide(); // still show play button if private && isOwner()
}
$isPrivate.addClass('enabled')
}
}