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

fixed db disposals

This commit is contained in:
Luke Pulverenti 2013-04-19 16:27:02 -04:00
parent 8f85dce021
commit 9b0241d0e0
3 changed files with 22 additions and 2 deletions

View file

@ -85,11 +85,11 @@
}
}
@media all and (min-width: 1000px) {
/*@media all and (min-width: 1000px) {
.libraryPage:not(.folderListPage) > .ui-content, .libraryPage:not(.folderListPage) > .ui-panel-content-wrap {
margin-top: -35px!important;
}
}
}*/
@media all and (min-width: 1200px) {

View file

@ -76,6 +76,25 @@
LibraryBrowser.renderStudios($('#itemStudios', page), item);
renderUserDataIcons(page, item);
LibraryBrowser.renderLinks($('#itemLinks', page), item);
var airs = item.Status == "Ended" ? "Aired" : "Airs";
if (item.AirDays && item.AirDays.length) {
airs += " " + item.AirDays.map(function (i) {
return i.substring(0, 3);
}).join(',');
}
if (item.AirTime) {
airs += " at " + item.AirTime;
}
if (item.Studios && item.Studios.length) {
airs += " on " + item.Studios[0];
}
$('#itemAirTime', page).html(airs);
}
function renderUserDataIcons(page, item) {

View file

@ -35,6 +35,7 @@
<p id="itemRatings"></p>
<p id="itemCommunityRating"></p>
<p id="itemMiscInfo" class="itemMiscInfo"></p>
<p id="itemAirTime"></p>
<p id="itemPremiereDate"></p>
<p id="itemGenres"></p>
<p id="itemStudios"></p>