diff options
Diffstat (limited to 'core/js/public/publicpage.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 |