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

show loading when switching between ibn items

This commit is contained in:
Luke Pulverenti 2013-04-18 01:13:44 -04:00
parent a389274376
commit 54fc0fc13a

View file

@ -224,6 +224,8 @@
function loadItems(page, options) {
Dashboard.showLoadingMsg();
var query = {
SortBy: "SortName",
@ -276,6 +278,8 @@
query.StartIndex = query.StartIndex - query.Limit;
loadItems(page, query);
});
Dashboard.hideLoadingMsg();
});
}