- 🇷🇸Serbia holo96
4.x entered maintenance only, and this is already supported on 5.x
Automatically closed - issue fixed for 2 weeks with no activity.
I needed to enable feature to close menu by clicking escape on keyboard or to click outside, so I added this code to cheeseburger_menu.js file:
function includeCode() {
var $active = $('.cheeseburger-menu__menu-list-item-link.active');
var hasActive = $active.length > 0;
$('.cheeseburger-menu__trigger').on('click touchstart', function (e) {
$('body, .cheeseburger-menu__wrapper').toggleClass('menu-is-visible');
$('.cheeseburger-menu__trigger').toggleClass('is-open');
e.preventDefault();
});
// ESC key feateure START
$(document).keyup(function(e) {
if (e.keyCode == 27) { // escape key maps to keycode `27`
if ($(".cheeseburger-menu__trigger").hasClass("is-open")) {
$('body, .cheeseburger-menu__wrapper').toggleClass('menu-is-visible');
$('.cheeseburger-menu__trigger').toggleClass('is-open');
}
}
});
// ESC key feateure END
//CLICK OUTSIDE OF MENU TO CLOSE IT - START
$(document).mouseup(function(e)
{
var menu_wrapper = $(".cheeseburger-menu__wrapper");
var trigger = $(".cheeseburger-menu__trigger");
// if the target of the click isn't the container nor a descendant of the container
if (!menu_wrapper.is(e.target) && menu_wrapper.has(e.target).length === 0 && trigger.hasClass("is-open") && !trigger.is(e.target))
{
// container.hide();
$('body, .cheeseburger-menu__wrapper').toggleClass('menu-is-visible');
$('.cheeseburger-menu__trigger').toggleClass('is-open');
}
});
//CLICK OUTSIDE OF MENU TO CLOSE IT - END
var scrollTo = function (element, to, duration) {
var start = element.scrollTop,
change = to,
currentTime = 0,
increment = 20;
.
.
.
...rest of the code
I don't have time to make a patch.
Fixed
5.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
4.x entered maintenance only, and this is already supported on 5.x
Automatically closed - issue fixed for 2 weeks with no activity.