mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1429 from keepassxreboot/fix/apple_login_page
Fix Apple login page
This commit is contained in:
commit
7eba997f79
2 changed files with 3 additions and 2 deletions
|
|
@ -76,7 +76,8 @@ kpxcSites.exceptionFound = function(identifier) {
|
|||
}
|
||||
|
||||
if (document.location.origin === 'https://idmsa.apple.com'
|
||||
&& [ 'password', 'form-row', 'show-password' ].every(c => identifier.contains(c))) {
|
||||
&& ((typeof identifier === 'string' && identifier === 'password_text_field')
|
||||
|| [ 'password', 'form-row', 'show-password' ].every(c => identifier.contains(c)))) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://signin.ebay.')
|
||||
&& (identifier === 'null' || identifier.value === 'null' || identifier === 'pass')) {
|
||||
|
|
|
|||
|
|
@ -290,7 +290,7 @@ document.addEventListener('mousemove', function(e) {
|
|||
const xPos = e.clientX - kpxcDefine.diffX;
|
||||
const yPos = e.clientY - kpxcDefine.diffY;
|
||||
|
||||
if (kpxcDefine.selected !== null) {
|
||||
if (kpxcDefine.selected && kpxcDefine.dialog) {
|
||||
kpxcDefine.dialog.style.left = Pixels(xPos);
|
||||
kpxcDefine.dialog.style.top = Pixels(yPos);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue