Skip to content

Commit

Permalink
IE10 viewport hack for Surface/desktop Windows 8 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Fireply committed May 17, 2016
1 parent 3f81af7 commit bbfb79f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions WebRoot/js/ie10-viewport-bug-workaround.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*!
* IE10 viewport hack for Surface/desktop Windows 8 bug
* Copyright 2014-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

// See the Getting Started docs for more information:
// http://getbootstrap.com/getting-started/#support-ie10-width

(function () {
'use strict';

if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement('style')
msViewportStyle.appendChild(
document.createTextNode(
'@-ms-viewport{width:auto!important}'
)
)
document.querySelector('head').appendChild(msViewportStyle)
}

})();

0 comments on commit bbfb79f

Please sign in to comment.