mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 07:23:05 +03:00
17 lines
322 B
JavaScript
17 lines
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');
|
|
}
|
|
});
|
|
|
|
}
|
|
}; |