1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 15:47:00 +02:00

Anchor Logout button to body, not to viewport (bug #979)

This reverts commit e277d05162.
This commit is contained in:
Jakub Vrana
2025-04-04 17:58:48 +02:00
parent 01d8fe112c
commit 7198ad5229
3 changed files with 10 additions and 10 deletions

View File

@@ -848,7 +848,7 @@ oninput = event => {
};
addEvent(document, 'click', event => {
if (!qs('#menu').contains(event.target)) {
alterClass(qs('#menu'), 'foot', true);
if (!qs('#foot').contains(event.target)) {
alterClass(qs('#foot'), 'foot', true);
}
});