1
0
Fork 0
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:
Luke Pulverenti 2015-05-14 22:16:57 -04:00
parent ce35317652
commit 4b2be0b97a
16 changed files with 478 additions and 409 deletions

View file

@ -161,7 +161,8 @@
lazy: true,
cardLayout: cardLayout,
showTitle: cardLayout,
showYear: cardLayout
showYear: cardLayout,
showDetailsMenu: true
});
html += '</div>';
}
@ -196,7 +197,8 @@
shape: 'auto',
showTitle: true,
centerText: true,
lazy: true
lazy: true,
showDetailsMenu: true
});
html += '</div>';
}
@ -251,7 +253,7 @@
html += '</div>';
}
$(elem).html(html).lazyChildren().createCardMenus();
$(elem).html(html).lazyChildren().createCardMenus({ showDetailsMenu: false });
handleLibraryLinkNavigations(elem);
});
@ -294,7 +296,8 @@
showParentTitle: true,
context: 'home',
lazy: true,
cardLayout: cardLayout
cardLayout: cardLayout,
showDetailsMenu: true
});
html += '</div>';
}
@ -384,7 +387,8 @@
showTitle: true,
centerText: true,
context: 'channels',
lazy: true
lazy: true,
showDetailsMenu: true
});
html += '</div>';
@ -424,7 +428,8 @@
showParentTitle: true,
overlayText: screenWidth >= 600,
coverImage: true,
lazy: true
lazy: true,
showDetailsMenu: true
});
elem.html(html).lazyChildren().trigger('create');
@ -657,7 +662,7 @@
});
function getDisplayPreferencesAppName() {
if (Dashboard.isRunningInCordova()) {
return 'Emby Mobile';
}
@ -668,7 +673,7 @@
function getDisplayPreferences(key, userId) {
return ApiClient.getDisplayPreferences(key, userId, getDisplayPreferencesAppName()).done(function (result) {
});
}