Skip to content

Instantly share code, notes, and snippets.

@saiful
Forked from stowball/wp8-ie10-fix.js
Created February 16, 2014 15:01
Show Gist options
  • Save saiful/9035643 to your computer and use it in GitHub Desktop.
Save saiful/9035643 to your computer and use it in GitHub Desktop.
(function() {
if ("-ms-user-select" in document.documentElement.style && 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