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:
parent
0d98c7fa71
commit
2c631573d6
3 changed files with 4 additions and 2 deletions
|
@ -67,6 +67,7 @@ h2 {
|
|||
h1 a {
|
||||
font-weight: normal!important;
|
||||
text-decoration: none;
|
||||
color: #fff!important;
|
||||
}
|
||||
|
||||
h1 a:hover {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<div id="views">
|
||||
</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>
|
||||
</td>
|
||||
|
|
|
@ -278,7 +278,8 @@
|
|||
|
||||
var options = {
|
||||
userId: Dashboard.getCurrentUserId(),
|
||||
limit: item.Type == "MusicAlbum" ? 6 : 8
|
||||
limit: item.Type == "MusicAlbum" ? 6 : 8,
|
||||
fields: "PrimaryImageAspectRatio,DateCreated,UserData"
|
||||
};
|
||||
|
||||
if (item.Type == "Movie") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue