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

re-factored some file system access

This commit is contained in:
Luke Pulverenti 2013-06-03 22:02:49 -04:00
parent 0d98c7fa71
commit 2c631573d6
3 changed files with 4 additions and 2 deletions

View file

@ -67,6 +67,7 @@ h2 {
h1 a { h1 a {
font-weight: normal!important; font-weight: normal!important;
text-decoration: none; text-decoration: none;
color: #fff!important;
} }
h1 a:hover { h1 a:hover {

View file

@ -15,7 +15,7 @@
<div id="views"> <div id="views">
</div> </div>
<h1 class="listHeader"><a href="itemlist.html">Collections</a></h1> <h1 class="listHeader"><a href="itemlist.html">Collections<img src="css/images/rightarrow.png" style="height: 24px; margin-left: .5em;" /></a></h1>
<div id="divCollections"></div> <div id="divCollections"></div>
</td> </td>

View file

@ -278,7 +278,8 @@
var options = { var options = {
userId: Dashboard.getCurrentUserId(), userId: Dashboard.getCurrentUserId(),
limit: item.Type == "MusicAlbum" ? 6 : 8 limit: item.Type == "MusicAlbum" ? 6 : 8,
fields: "PrimaryImageAspectRatio,DateCreated,UserData"
}; };
if (item.Type == "Movie") { if (item.Type == "Movie") {