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

hide queue button for now

This commit is contained in:
Luke Pulverenti 2013-04-11 08:49:14 -04:00
parent 9311eca340
commit 1dfb16e578
3 changed files with 30 additions and 15 deletions

View file

@ -38,13 +38,11 @@
if (MediaPlayer.canPlay(item)) {
$('#btnPlayMenu', page).show();
$('#playButtonShadow', page).show();
//$('#btnQueueMenu', page).show();
//$('#queueButtonShadow', page).show();
$('#btnQueueMenu', page).hide();
} else {
$('#btnPlayMenu', page).hide();
$('#playButtonShadow', page).hide();
$('#btnQueueMenu', page).hide();
$('#queueButtonShadow', page).hide();
}
Dashboard.hideLoadingMsg();