drawer
drawer copied to clipboard
Drawer menu is hidden immediately in iOS 11.3
env: iOS 11.3 beta 6
- Open the drawer menu in Safari
- Scroll the drawer menu (address bar will be resized)
- The drawer menu will be hidden immediately.
workarounds:
$drawer.drawer({
iscroll: {
preventDefault: true,
click: true,
},
});
You can disable the resize event of the drawer.
$(window).off('resize.drawer');
But it seems necessary to update this plugin as well.
@koogawa fix worked for me. Thank you
The solution suggested by @koogawa solved it for me too. But don't forget to add mouseWheel: true
to the iscroll properties, just to make sure it scrolls on desktop.