diff options
author | Mostafa Ahangarha <ahangarha@riseup.net> | 2023-12-23 19:46:25 +0330 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-08-29 08:32:47 +0000 |
commit | c5baf3d7ef2715def79ff7734d505c56bb20012c (patch) | |
tree | 842bdc35602ea21ec909137c05ba2765450a54b0 /core/js | |
parent | 26f4b97b2bf872f65c15dc21a7410fe23f11d253 (diff) | |
download | nextcloud-server-c5baf3d7ef2715def79ff7734d505c56bb20012c.tar.gz nextcloud-server-c5baf3d7ef2715def79ff7734d505c56bb20012c.zip |
Fix: float and clear
Fix other background-positions
Minor fix in link button icon position
Update header left and right to start and end
Signed-off-by: Mostafa Ahangarha <ahangarha@riseup.net>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/public/publicpage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/public/publicpage.js b/core/js/public/publicpage.js index 340fb56d9f1..b17eac181b1 100644 --- a/core/js/public/publicpage.js +++ b/core/js/public/publicpage.js @@ -5,7 +5,7 @@ window.addEventListener('DOMContentLoaded', function () { - $('#body-public').find('.header-right .menutoggle').click(function() { + $('#body-public').find('.header-end .menutoggle').click(function() { $(this).next('.popovermenu').toggleClass('open'); }); @@ -15,7 +15,7 @@ window.addEventListener('DOMContentLoaded', function () { }); $(document).mouseup(function(e) { - var toggle = $('#body-public').find('.header-right .menutoggle'); + var toggle = $('#body-public').find('.header-end .menutoggle'); var container = toggle.next('.popovermenu'); // if the target of the click isn't the menu toggle, nor a descendant of the |