diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-04-21 23:19:17 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-04-21 23:19:17 +0200 |
commit | 96d19c09f39b4d022741f9ba4def6a68c768946d (patch) | |
tree | 4ac562fa486da5ec95f5f9141defa07c76bac17f /view/tpl/nav_header.tpl | |
parent | d7f4bfedd5164596504d17b1ef4b8597a1304d98 (diff) | |
download | volse-hubzilla-96d19c09f39b4d022741f9ba4def6a68c768946d.tar.gz volse-hubzilla-96d19c09f39b4d022741f9ba4def6a68c768946d.tar.bz2 volse-hubzilla-96d19c09f39b4d022741f9ba4def6a68c768946d.zip |
fix help button for collapsed state
Diffstat (limited to 'view/tpl/nav_header.tpl')
-rw-r--r-- | view/tpl/nav_header.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/nav_header.tpl b/view/tpl/nav_header.tpl index be990765c..27713b55b 100644 --- a/view/tpl/nav_header.tpl +++ b/view/tpl/nav_header.tpl @@ -13,14 +13,14 @@ && container.hasClass('help-content-open')) || ( - ($('#help_nav_btn').is(e.target) || $('#help_nav_btn').has(e.target).length !== 0) + ($('#help_nav_btn, #help_nav_btn_collapsed').is(e.target) || $('#help_nav_btn, #help_nav_btn_collapsed').has(e.target).length !== 0) && container.hasClass('help-content-open') )) { container.removeClass('help-content-open'); $('main').removeClass('help-content-open'); $('main').css('top', '') } - else if (($('#help_nav_btn').is(e.target) || $('#help_nav_btn').has(e.target).length !== 0) + else if (($('#help_nav_btn, #help_nav_btn_collapsed').is(e.target) || $('#help_nav_btn, #help_nav_btn_collapsed').has(e.target).length !== 0) && !container.hasClass('help-content-open')) { $('#help-content').addClass('help-content-open'); $('main').removeClass('help-content-open'); |