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

Fix spinning circle at the end of config wizard.

Adds some functions to navigate directly to url, instead of relatively.
This commit is contained in:
Riccardo Zanotto 2019-01-11 13:40:36 +01:00
parent 02918d066f
commit b7e857127c
4 changed files with 18 additions and 2 deletions

View file

@ -665,6 +665,13 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
}
return page.canGoBack();
}
function showDirect(path) {
return new Promise(function(resolve, reject) {
resolveOnNextShow = resolve, page.show(baseUrl()+path)
})
}
function show(path, options) {
if (path.indexOf('/') !== 0 && path.indexOf('://') === -1) {
@ -869,6 +876,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
appRouter.param = param;
appRouter.back = back;
appRouter.show = show;
appRouter.showDirect = showDirect;
appRouter.start = start;
appRouter.baseUrl = baseUrl;
appRouter.canGoBack = canGoBack;