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

added studio dto

This commit is contained in:
Luke Pulverenti 2013-05-03 23:13:28 -04:00
parent fd54e02387
commit a3311cd199
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
text-decoration: none; text-decoration: none;
text-align: left; text-align: left;
overflow: hidden; overflow: hidden;
border: 1px solid #666; border: 1px solid #555;
} }
.posterItem:hover { .posterItem:hover {

View file

@ -1297,7 +1297,7 @@
html += '  /  '; html += '  /  ';
} }
html += '<a href="itembynamedetails.html?context=' + context + '&studio=' + ApiClient.encodeName(item.Studios[i]) + '">' + item.Studios[i] + '</a>'; html += '<a href="itembynamedetails.html?context=' + context + '&studio=' + ApiClient.encodeName(item.Studios[i].Name) + '">' + item.Studios[i].Name + '</a>';
} }
elem.show().html(html).trigger('create'); elem.show().html(html).trigger('create');