Skip to content
Snippets Groups Projects
Commit 9abad6f6 authored by Chris Lawton's avatar Chris Lawton Committed by Todd Dembrey
Browse files

logic to show/hide the pop up activity feed

parent 1b389fa7
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,18 @@ import MobileSearch from './components/mobile-search';
`);
}
});
// Open the activity feed
$('.js-open-feed').click(function(e) {
e.preventDefault();
$('.js-activity-feed').addClass('is-open');
});
// Close the activity feed
$('.js-close-feed').click(function(e) {
e.preventDefault();
$('.js-activity-feed').removeClass('is-open');
});
});
// Add active class to filters - dropdowns are dynamically appended to the dom,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment