Merge pull request #9357 from jibees/9180-close-mobile-menu-on-click-anywhere

Close menu on click outside the menu and outside the hamburger icon
This commit is contained in:
Filipe
2022-07-01 10:16:43 +01:00
committed by GitHub

View File

@@ -26,4 +26,8 @@ angular.module('mm.foundation.offcanvas').directive 'offCanvasWrap', ($window) -
# Bind hiding of the off-canvas that only happens when screen width is over 1024px.
win.bind 'resize.body', ->
isolatedScope.hide() if $(window).width() > 1024
win.bind 'click.body', (e) ->
if e.target.closest(".left-off-canvas-menu") == null && e.target.closest(".left-off-canvas-toggle") == null
isolatedScope.hide()
}