Skip to content

Instantly share code, notes, and snippets.

View mhouston's full-sized avatar
🌌
Working

mhouston mhouston

🌌
Working
View GitHub Profile
(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);
}
})();