Commit 214f20d6 authored by Clement Ho's avatar Clement Ho

Fix explore groups landing toggle

parent d8f5aa30
...@@ -12,5 +12,5 @@ document.addEventListener('DOMContentLoaded', () => { ...@@ -12,5 +12,5 @@ document.addEventListener('DOMContentLoaded', () => {
landingElement.querySelector('.dismiss-button'), landingElement.querySelector('.dismiss-button'),
'explore_groups_landing_dismissed', 'explore_groups_landing_dismissed',
); );
exploreGroupsLanding.toggleClass('hidden'); exploreGroupsLanding.toggle();
}); });
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
= render 'nav' = render 'nav'
- if cookies[:explore_groups_landing_dismissed] != 'true' - if cookies[:explore_groups_landing_dismissed] != 'true'
.explore-groups.landing.content-block.js-explore-groups-landing.hidden .explore-groups.landing.content-block.js-explore-groups-landing.hide
%button.dismiss-button{ type: 'button', 'aria-label' => 'Dismiss' }= icon('times') %button.dismiss-button{ type: 'button', 'aria-label' => 'Dismiss' }= icon('times')
.svg-container .svg-container
= custom_icon('icon_explore_groups_splash') = custom_icon('icon_explore_groups_splash')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment