mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add item flyouts
This commit is contained in:
parent
ce35317652
commit
4b2be0b97a
16 changed files with 478 additions and 409 deletions
|
@ -884,6 +884,10 @@
|
|||
atts.push('data-locationtype="' + (item.LocationType || '') + '"');
|
||||
atts.push('data-index="' + index + '"');
|
||||
|
||||
if (options.showDetailsMenu) {
|
||||
atts.push('data-detailsmenu="true"');
|
||||
}
|
||||
|
||||
var html = atts.join(' ');
|
||||
|
||||
if (html) {
|
||||
|
@ -1689,7 +1693,8 @@
|
|||
return {
|
||||
id: itemId,
|
||||
index: index,
|
||||
mediaType: mediaType
|
||||
mediaType: mediaType,
|
||||
context: elemWithAttributes.getAttribute('data-context')
|
||||
};
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue