mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07: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');
|
|
}
|
|
});
|
|
|
|
}
|
|
}; |