Created
April 14, 2017 11:03
-
-
Save srph/e561f855afbde792fca656b9569ed95b to your computer and use it in GitHub Desktop.
Workaround for iPhone
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
| +(function() { | |
| var uagent = navigator.userAgent.toLowerCase() | |
| if (uagent.search("iphone") !== -1) { | |
| document.body.classList.add('-is-iphone') | |
| } | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment