Skip to content
This repository has been archived by the owner on Feb 26, 2021. It is now read-only.

Commit

Permalink
Auth settings are now passed back to main window after logout
Browse files Browse the repository at this point in the history
  • Loading branch information
bmavity committed Jul 10, 2017
1 parent 4479fc3 commit daced7f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ui/js/ui.login.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,11 @@ var UI = (function(UI, $, undefined) {
"interrupt": 1
}

if(connection.auth) {
params.auth_password = connection.auth.password;
params.auth_user = connection.auth.user;
}

window.location.href = "index.html?" + $.param(params);
});

Expand Down

0 comments on commit daced7f

Please sign in to comment.