twbs--bootstrap/docs/assets/js/ie10-viewport-bug-workaroun...

24 lines
624 B
JavaScript
Raw Normal View History

/*!
* IE10 viewport hack for Surface/desktop Windows 8 bug
2015-04-29 09:11:58 +00:00
* 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 () {
2014-03-17 07:12:55 +00:00
'use strict';
2015-04-29 09:11:58 +00:00
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement('style')
msViewportStyle.appendChild(
document.createTextNode(
'@-ms-viewport{width:auto!important}'
)
)
document.head.appendChild(msViewportStyle)
}
2015-04-29 09:11:58 +00:00
})();