jellyfin-web/dashboard-ui/scripts/wizardstartpage.js

17 lines
322 B
JavaScript
Raw Normal View History

2013-02-20 18:33:05 -07:00
var WizardStartPage = {
gotoNextPage: function () {
2013-03-21 13:43:42 -07:00
ApiClient.getUsers().done(function (users) {
2013-02-20 18:33:05 -07:00
if (users.length > 1) {
2013-03-28 17:10:15 -07:00
Dashboard.navigate('wizardlibrary.html');
2013-02-20 18:33:05 -07:00
} else {
2013-03-28 17:10:15 -07:00
Dashboard.navigate('wizarduser.html');
2013-02-20 18:33:05 -07:00
}
});
}
};