0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-13 01:08:58 +01:00
Bootstrap/docs/4.1/assets/js/ie10-viewport-bug-workaround.js

25 lines
668 B
JavaScript
Raw Normal View History

/*!
* IE10 viewport hack for Surface/desktop Windows 8 bug
2017-08-11 06:04:59 +02:00
* Copyright 2014-2017 The Bootstrap Authors
* Copyright 2014-2017 Twitter, Inc.
2015-06-16 18:50:35 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
// See the Getting Started docs for more information:
2017-08-11 06:04:59 +02:00
// https://getbootstrap.com/getting-started/#support-ie10-width
(function () {
2017-08-11 06:04:59 +02:00
'use strict'
2015-06-16 18:50:35 +02:00
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement('style')
msViewportStyle.appendChild(
document.createTextNode(
'@-ms-viewport{width:auto!important}'
)
)
2017-08-11 06:04:59 +02:00
document.head.appendChild(msViewportStyle)
}
2015-06-16 18:50:35 +02:00
2017-08-11 06:04:59 +02:00
}())