drawer icon indicating copy to clipboard operation
drawer copied to clipboard

Drawer menu is hidden immediately in iOS 11.3

Open koogawa opened this issue 6 years ago • 4 comments

env: iOS 11.3 beta 6

  1. Open the drawer menu in Safari
  2. Scroll the drawer menu (address bar will be resized)
  3. The drawer menu will be hidden immediately.

demo

koogawa avatar Mar 19 '18 08:03 koogawa

workarounds:

$drawer.drawer({
	iscroll: {
		preventDefault: true,
		click: true,
	},
});

koogawa avatar Mar 19 '18 08:03 koogawa

You can disable the resize event of the drawer.

$(window).off('resize.drawer');

But it seems necessary to update this plugin as well.

blivesta avatar Apr 25 '18 04:04 blivesta

@koogawa fix worked for me. Thank you

kcray avatar May 24 '18 03:05 kcray

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.

ierika avatar Jun 01 '18 05:06 ierika