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

use pagebeforeshow when possible to remove transitional flicker

This commit is contained in:
Luke Pulverenti 2013-04-06 14:57:38 -04:00
parent c754d22a86
commit 538ff65a6e
6 changed files with 15 additions and 8 deletions

View file

@ -58,9 +58,11 @@
reloadItems(page);
});
}).on('pageshow', "#boxsetsPage", function () {
}).on('pagebeforeshow', "#boxsetsPage", function () {
reloadItems(this);
reloadItems(this);
}).on('pageshow', "#boxsetsPage", function () {
// Reset form values using the last used query
$('.radioSortBy', this).each(function () {