mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
17 lines
No EOL
322 B
JavaScript
17 lines
No EOL
322 B
JavaScript
var WizardStartPage = {
|
|
|
|
gotoNextPage: function () {
|
|
|
|
ApiClient.getUsers().done(function (users) {
|
|
|
|
if (users.length > 1) {
|
|
|
|
Dashboard.navigate('wizardLibrary.html');
|
|
|
|
} else {
|
|
Dashboard.navigate('wizardUser.html');
|
|
}
|
|
});
|
|
|
|
}
|
|
}; |