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

add specialized get seasons method

This commit is contained in:
Luke Pulverenti 2013-11-28 13:27:29 -05:00
parent f5b62182b5
commit 878bad724a
20 changed files with 103 additions and 72 deletions

View file

@ -47,7 +47,7 @@
}
function constructPerson(item, person) {
var html = '<div class="tileItem posterTileItem">';
var html = '<div class="tileItem posterTileItem editorTile">';
var imgUrl;
var name = person.Name || "";
var role = person.Role || "";
@ -94,7 +94,7 @@
if (item.LocationType !== "Offline") {
html += '<span class="read">';
html += '<button type="button" class="edit" data-mini="true" data-inline="true" onclick="EditItemPeoplePage.displayEdit(this)">Edit</button>';
html += '<button type="button" class="edit" data-mini="true" data-inline="true" data-icon="pencil" onclick="EditItemPeoplePage.displayEdit(this)">Edit</button>';
html += '</span>';
}