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

change remote episode provider to xml reader

This commit is contained in:
Luke Pulverenti 2013-10-11 21:47:44 -04:00
parent e3e6fb6101
commit 4ed4238b7c
2 changed files with 0 additions and 7 deletions

View file

@ -159,7 +159,6 @@
<p class="itemExternalLinks"></p> <p class="itemExternalLinks"></p>
<div class="mediaInfo"></div> <div class="mediaInfo"></div>
<p class="itemTags"></p> <p class="itemTags"></p>
<p class="itemPath"></p>
</div> </div>
</div> </div>
<div id="trailersCollapsible" class="detailSection hide"> <div id="trailersCollapsible" class="detailSection hide">

View file

@ -265,12 +265,6 @@
} else { } else {
detailsSection.removeClass('hide'); detailsSection.removeClass('hide');
} }
if (item.Path) {
$('.itemPath', page).show().html('Path:&nbsp;&nbsp;' + '<span style="font-size:13px;">' + item.Path + '</span>');
} else {
$('.itemPath', page).hide();
}
} }
function getArtistLinksHtml(artists) { function getArtistLinksHtml(artists) {