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

Added filters to the item list page

This commit is contained in:
Luke Pulverenti 2013-03-30 10:57:30 -04:00
parent a42f547c00
commit 70187c1434
6 changed files with 203 additions and 48 deletions

View file

@ -311,11 +311,11 @@ var Dashboard = {
},
showLoadingMsg: function () {
$.mobile.showPageLoadingMsg();
$.mobile.loading("show");
},
hideLoadingMsg: function () {
$.mobile.hidePageLoadingMsg();
$.mobile.loading("hide");
},
processPluginConfigurationUpdateResult: function () {
@ -434,7 +434,7 @@ var Dashboard = {
var hasPrimaryImage = item.ImageTags && item.ImageTags.Primary;
var href = item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id;
var href = item.url || (item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id);
var showText = options.showTitle || !hasPrimaryImage || (item.Type !== 'Movie' && item.Type !== 'Series' && item.Type !== 'Season' && item.Type !== 'Trailer');