Created
March 29, 2016 23:16
-
-
Save ayamflow/cb9071e875ef24db1c1c1a28ae1eaee1 to your computer and use it in GitHub Desktop.
iphone 5 hide bars on iOS 8+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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