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

Pushing missing changes

This commit is contained in:
LukePulverenti 2013-02-20 20:33:05 -05:00
parent 1227b75260
commit 331a8d8366
129 changed files with 8370 additions and 15 deletions

View file

@ -0,0 +1,17 @@
var WizardStartPage = {
gotoNextPage: function () {
ApiClient.getAllUsers().done(function (users) {
if (users.length > 1) {
Dashboard.navigate('wizardLibrary.html');
} else {
Dashboard.navigate('wizardUser.html');
}
});
}
};