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

17 lines
322 B
JavaScript
Raw Normal View History

2013-02-20 20:33:05 -05:00
var WizardStartPage = {
gotoNextPage: function () {
2013-03-21 16:43:42 -04:00
ApiClient.getUsers().done(function (users) {
2013-02-20 20:33:05 -05:00
if (users.length > 1) {
Dashboard.navigate('wizardLibrary.html');
} else {
Dashboard.navigate('wizardUser.html');
}
});
}
};