Skip to content
Snippets Groups Projects
Commit e7659871 authored by Maxim Khlobystov's avatar Maxim Khlobystov
Browse files

Fixed the issue with the screen not darkening after opening one of the menus...

Fixed the issue with the screen not darkening after opening one of the menus while the other one is open.
parent 21ff2bdf
No related branches found
No related tags found
No related merge requests found
......@@ -56,18 +56,20 @@ Template.header.events
if isLandscape()
toggleUsersList()
else
toggleShield()
if $('.sl-right-drawer').hasClass('sl-right-drawer-out')
toggleRightDrawer()
toggleRightArrowClockwise()
else
toggleShield()
toggleLeftDrawer()
toggleLeftArrowClockwise()
"click .toggleMenuButton": (event) ->
toggleShield()
if $('.sl-left-drawer').hasClass('sl-left-drawer-out')
toggleLeftDrawer()
toggleLeftArrowClockwise()
else
toggleShield()
toggleRightDrawer()
toggleRightArrowClockwise()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment