slideout
slideout copied to clipboard
Android native browser scroll
Scrolling of main content of page is available when menu is open. Tested on Android native browser 4.1 and 4.4.2
i fixed this bug (seems to be webkit only) by putting overflow-x: hidden; position: absolute; in the style for the body element and another overflow-x: hidden; in the style for the html element
like this:
html { overflow-x: hidden; }
body { overflow-x: hidden; position:absolute; }