mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Put else on same line as closing brace before.
This commit is contained in:
parent
50c10cedc7
commit
ebd30a5d0a
1 changed files with 1 additions and 2 deletions
|
|
@ -87,8 +87,7 @@ kpxcUI.setIconPosition = function(icon, field) {
|
|||
icon.style.top = Pixels((rect.top + document.scrollingElement.scrollTop) + offset + 1);
|
||||
if (document.dir === 'rtl') {
|
||||
icon.style.left = Pixels((rect.left + document.scrollingElement.scrollLeft) + offset);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
icon.style.left = Pixels((rect.left + document.scrollingElement.scrollLeft) + field.offsetWidth - size - offset);
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue