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

@ -20,8 +20,7 @@
<img src="css/images/media/playCircle.png" style="height: 28px;" /> <img src="css/images/media/playCircle.png" style="height: 28px;" />
</button> </button>
<div id="queueButtonShadow" style="display: none; height: 48px; position: absolute; bottom: 0; left: 0; right: 0; background: black; opacity: .75;"></div> <button id="btnQueueMenu" type="button" class="imageButton" style="position: absolute; bottom: 5px; left: 50px;" data-role="none" title="Queue">
<button id="btnQueueMenu" type="button" class="imageButton" style=" position: absolute; bottom: 5px; left: 50px;" data-role="none" title="Queue">
<img src="css/images/media/queue.png" style="height: 28px;" /> <img src="css/images/media/queue.png" style="height: 28px;" />
</button> </button>
</div> </div>
@ -64,7 +63,7 @@
<h3>Cast & Crew</h3> <h3>Cast & Crew</h3>
<div id="castContent"></div> <div id="castContent"></div>
</div> </div>
<div data-role="collapsible" id="galleryCollapsible" class=""> <div data-role="collapsible" id="galleryCollapsible">
<h3>Gallery</h3> <h3>Gallery</h3>
<div id="galleryContent"></div> <div id="galleryContent"></div>
</div> </div>

View file

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

View file

@ -7,6 +7,7 @@
<div id="tvSeriesPage" data-role="page" class="page libraryPage noLogoPage" data-theme="a"> <div id="tvSeriesPage" data-role="page" class="page libraryPage noLogoPage" data-theme="a">
<h1 class="libraryPageHeader"><a href="index.html" class="imageLink"> <h1 class="libraryPageHeader"><a href="index.html" class="imageLink">
<img src="css/images/home.png"></a>TV Shows</h1> <img src="css/images/home.png"></a>TV Shows</h1>
<div data-role="content"> <div data-role="content">
<div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true"> <div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true">
@ -39,6 +40,23 @@
</div> </div>
</div> </div>
<div data-role="collapsible" id="seasonsCollapsible">
<h3>Seasons</h3>
<div id="seasonsContent"></div>
</div>
<div data-role="collapsible" id="trailersCollapsible" class="hide">
<h3>Trailers</h3>
<div id="trailersContent"></div>
</div>
<div data-role="collapsible" id="castCollapsible" class="hide">
<h3>Cast & Crew</h3>
<div id="castContent"></div>
</div>
<div data-role="collapsible" id="galleryCollapsible">
<h3>Gallery</h3>
<div id="galleryContent"></div>
</div>
</div> </div>
</div> </div>
</body> </body>