mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update detail screens
This commit is contained in:
parent
7b42686295
commit
f5323ff3c2
34 changed files with 682 additions and 658 deletions
|
@ -106,7 +106,7 @@
|
|||
html += '<a href="itemlist.html?id=' + rRow.Id + '">' + rItem.Name + '</a>';
|
||||
break;
|
||||
case "ItemByNameDetails":
|
||||
html += '<a href="itembynamedetails.html?id=' + rItem.Id + '&context=' + rRow.RowType + '">' + rItem.Name + '</a>';
|
||||
html += '<a href="itemdetails.html?id=' + rItem.Id + '&context=' + rRow.RowType + '">' + rItem.Name + '</a>';
|
||||
break;
|
||||
case "EmbeddedImage":
|
||||
if (rRow.HasEmbeddedImage) {
|
||||
|
@ -237,7 +237,7 @@
|
|||
var rItem = group.Items[j];
|
||||
html += '<a class="item ui-btn"';
|
||||
if (rItem.Id > "")
|
||||
html += ' href="itembynamedetails.html?id=' + rItem.Id + '"';
|
||||
html += ' href="itemdetails.html?id=' + rItem.Id + '"';
|
||||
html += '>' + rItem.Name + ' ' + '</a>';
|
||||
html += '<a title="" class="listviewMenuButton ui-btn ui-btn-inline">' + rItem.Value + ' ' + '</a>';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue