Skip to content

Commit 57483da

Browse files
committed
fix: tabbing to remember me
1 parent 5309b68 commit 57483da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/preload/rememberMe.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,14 @@ function setup() {
3232
updatePassword(user);
3333
underscript.lib.tippy(document.querySelector('input[name="stayConnected"]').parentElement, {
3434
content: 'Click here to save your username & password!<div style="width:100%;text-align:right;font-size:12px;font-family:monospace;">via UnderScript App</div>',
35-
showOnInit: user === undefined,
35+
showOnInit: !user,
3636
placement: 'bottom-start',
3737
theme: 'undercards',
3838
animateFill: false,
39+
ignoreAttributes: true,
40+
duration: 0,
3941
arrow: true,
42+
a11y: false,
4043
});
4144
}
4245

0 commit comments

Comments
 (0)