Last active
January 4, 2016 00:08
-
-
Save thebuilder/8539308 to your computer and use it in GitHub Desktop.
Ensure that viewport width is set correctly on Windows Phone 8. Place this in <head> of HTML
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
if (navigator.userAgent.match(/IEMobile\/10\.0/)) { | |
var msViewportStyle = document.createElement("style"); | |
msViewportStyle.appendChild(document.createTextNode("@-ms-viewport{width:auto!important}")); | |
document.getElementsByTagName("head")[0].appendChild(msViewportStyle); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment