Open left nav, click icon for right nav. Left nav now closes but right nav does not open.
Caused by this check:
// If the opposite side is already open, close it
if (utils.hasClass(container, options.accessClasses[dir])) {
utils.removeClass(container, options.accessClasses[dir]);
} else if ( ! utils.hasClass(container, options.accessClasses[access]) && options.direction.indexOf(access) !== -1) {
// If the side we're trying to expose isn't already open and if we're allowed to expose the panel
utils.addClass(container, options.accessClasses[access]);
}
Removing the check means that swipes always open menus though. Perhaps an override on remotely triggered events?
Perhaps we should have a separate function. That action is just for swiping: actions.swipe(), we could create a actions.openMenu() or similar for handling non-swipe events like menu triggers?
Open left nav, click icon for right nav. Left nav now closes but right nav does not open.
Caused by this check:
Removing the check means that swipes always open menus though. Perhaps an override on remotely triggered events?