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

updated service stack

This commit is contained in:
Luke Pulverenti 2014-03-01 12:53:56 -05:00
parent 08921bdaaf
commit bef8e451e3
3 changed files with 17 additions and 12 deletions

View file

@ -14,7 +14,7 @@
<a href="autoorganizetv.html" data-role="button">TV Settings</a>
</div>
<div style="margin: -15px 0 1em; text-align: right;">
<div style="margin: -25px 0 1em; text-align: right;">
<div class="listTopPaging" style="float: left; position: relative; top: 15px;">
</div>

View file

@ -36,17 +36,18 @@
</button>
</div>
<div style="vertical-align: bottom; display: inline-block;">
<div class="fldRefresh" style="display: none;">
<button id="btnRefresh" type="button" data-icon="refresh" data-mini="true" data-inline="true">Refresh</button>
</div>
</div>
<div style="display: inline-block; vertical-align: top;">
<div class="fldRefresh" style="display: none;">
<select data-mini="true" data-inline="true" id="selectRefreshMode">
<option value="all">Refresh All Data</option>
<option value="missing">Add Missing Data Only</option>
</select>
</div>
<div style="vertical-align: bottom; display: inline-block;">
<button id="btnIdentify" type="button" data-icon="info" data-mini="true" data-inline="true">Identify</button>
</div>
<div style="vertical-align: bottom; display: inline-block;">
<div id="fldDelete" style="display: none;">

View file

@ -271,7 +271,6 @@
$('#fldSortName', page).hide();
$('#fldDateAdded', page).hide();
$('#fldYear', page).hide();
$('.fldRefresh', page).hide();
} else {
$('#tagsCollapsible', page).show();
$('#metadataSettingsCollapsible', page).show();
@ -279,7 +278,12 @@
$('#fldSortName', page).show();
$('#fldDateAdded', page).show();
$('#fldYear', page).show();
$('.fldRefresh', page).show();
}
if (item.Type == "Movie") {
$('#btnIdentify', page).show();
} else {
$('#btnIdentify', page).hide();
}
if (item.Type == "Movie" || item.Type == "Trailer" || item.Type == "BoxSet") {