On iOS I can grab content and pull back over menu
Opened this issue · 1 comments
timmeade commented
using .push I can grab the content and pull it back over the open menu. If I use .shrink the content does not move at all when the main background shrinks.
timmeade commented
Ok Line 251 added touchstart.bigSlide fixed my issue:
if (settings.easyClose) {
$(document).on('click.bigSlide touchstart.bigSlide', function(e) {
if (!$(e.target).parents().addBack().is(menuLink) && !$(e.target).closest(settings.menu).length && controller.getState() === 'open') {
view.toggleClose();
}
});
}