mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update tag saving
This commit is contained in:
parent
3128b05f14
commit
84d590fd7c
2 changed files with 3 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
define(['jQuery'], function ($) {
|
||||
define([], function () {
|
||||
|
||||
function renderItems(page, item) {
|
||||
|
||||
|
@ -256,7 +256,7 @@
|
|||
var itemsContainer = element.querySelector('.itemsContainer');
|
||||
itemsContainer.innerHTML = html;
|
||||
|
||||
$(itemsContainer).createCardMenus();
|
||||
LibraryBrowser.createCardMenus(itemsContainer);
|
||||
ImageLoader.lazyChildren(itemsContainer);
|
||||
});
|
||||
}
|
||||
|
@ -302,7 +302,7 @@
|
|||
CollapseBoxSetItems: false
|
||||
};
|
||||
|
||||
query = $.extend(query, options || {});
|
||||
query = Object.assign(query, options || {});
|
||||
|
||||
if (query.IncludeItemTypes == "Audio") {
|
||||
query.SortBy = "AlbumArtist,Album,SortName";
|
||||
|
|
|
@ -1857,8 +1857,6 @@ var AppInfo = {};
|
|||
define("paper-tabs", ["html!" + bowerPath + "/paper-tabs/paper-tabs.html"]);
|
||||
define("paper-menu", ["html!" + bowerPath + "/paper-menu/paper-menu.html"]);
|
||||
define("paper-material", ["html!" + bowerPath + "/paper-material/paper-material.html"]);
|
||||
define("paper-dialog", ["html!" + bowerPath + "/paper-dialog/paper-dialog.html"]);
|
||||
define("paper-dialog-scrollable", ["html!" + bowerPath + "/paper-dialog-scrollable/paper-dialog-scrollable.html"]);
|
||||
define("paper-button", ["html!" + bowerPath + "/paper-button/paper-button.html"]);
|
||||
define("paper-icon-button", ["html!" + bowerPath + "/paper-icon-button/paper-icon-button.html"]);
|
||||
define("paper-icon-button-light", ["html!" + bowerPath + "/paper-icon-button/paper-icon-button-light.html", 'css!css/polymer/paper-icon-button-light.css']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue