Merge pull request #447 from keepassxreboot/fix/minor_for_133

Minor fixes for release 1.33
This commit is contained in:
Sami Vänttinen 2019-03-25 14:47:38 +02:00 committed by GitHub
commit 01dfa8eff0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -7,6 +7,10 @@
color: #222222 !important;
}
.kpxc .ui-menu {
z-index: 10000;
}
.ui-helper-hidden-accessible {
display: none !important;
}

View file

@ -194,7 +194,7 @@ cipAutocomplete.onFocus = function(e) {
// Search for isTrusted from jQuery's originalEvent
cipAutocomplete.isTrusted = function(e) {
for (let f = e.originalEvent; f !== null; f = f.originalEvent) {
for (let f = e.originalEvent; f; f = f.originalEvent) {
if (f.isTrusted !== undefined) {
return f.isTrusted;
}