Skip to content

Instantly share code, notes, and snippets.

@ayamflow
Created March 29, 2016 23:16
Show Gist options
  • Save ayamflow/cb9071e875ef24db1c1c1a28ae1eaee1 to your computer and use it in GitHub Desktop.
Save ayamflow/cb9071e875ef24db1c1c1a28ae1eaee1 to your computer and use it in GitHub Desktop.
iphone 5 hide bars on iOS 8+
// Bars will always show when clicking close to the top/botton of the device
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
height: 101%;
}
$(window).on('touchmove', function(e) {
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment