Fix a syntax error
This commit is contained in:
parent
def1864d6a
commit
513db437de
1 changed files with 2 additions and 2 deletions
|
@ -13,10 +13,10 @@ function bindAuthenticate() {
|
|||
|
||||
lightdm.show_prompt.connect((text, type) => {
|
||||
console.log(`Responding with ${$("#password-input").value}`);
|
||||
lightdm.respond($("#password-input").value)
|
||||
lightdm.respond($("#password-input").value);
|
||||
});
|
||||
|
||||
lightdm.authentication_complete.connect(() {
|
||||
lightdm.authentication_complete.connect(() => {
|
||||
const selectedSession = sessions[currentSession].id;
|
||||
console.log(`Starting session ${selectedSession}`)
|
||||
lightdm.start_session(selectedSession);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue