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,13 +20,12 @@
<img src="css/images/media/playCircle.png" style="height: 28px;" />
</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">
<img src="css/images/media/queue.png" style="height: 28px;" />
</button>
<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;" />
</button>
</div>
<div id="playMenuAnchor"></div>
<div id="queueMenuAnchor"></div>
<div id="queueMenuAnchor"></div>
</div>
@ -64,7 +63,7 @@
<h3>Cast & Crew</h3>
<div id="castContent"></div>
</div>
<div data-role="collapsible" id="galleryCollapsible" class="">
<div data-role="collapsible" id="galleryCollapsible">
<h3>Gallery</h3>
<div id="galleryContent"></div>
</div>
@ -77,12 +76,12 @@
</ul>
</div>
<div data-role="popup" id="queueMenu" data-corners="false" data-theme="c">
<ul data-role="listview" style="min-width: 150px;" data-theme="c">
<li data-role="list-divider" data-theme="a">Queue Menu</li>
<li><a href="#" id="btnQueue">Add to Queue</a></li>
</ul>
</div>
<div data-role="popup" id="queueMenu" data-corners="false" data-theme="c">
<ul data-role="listview" style="min-width: 150px;" data-theme="c">
<li data-role="list-divider" data-theme="a">Queue Menu</li>
<li><a href="#" id="btnQueue">Add to Queue</a></li>
</ul>
</div>
</div>
</div>
</body>

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();

View file

@ -7,6 +7,7 @@
<div id="tvSeriesPage" data-role="page" class="page libraryPage noLogoPage" data-theme="a">
<h1 class="libraryPageHeader"><a href="index.html" class="imageLink">
<img src="css/images/home.png"></a>TV Shows</h1>
<div data-role="content">
<div data-role="controlgroup" data-type="horizontal" class="libraryViewNav" data-mini="true">
@ -39,6 +40,23 @@
</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>
</body>