2016-01-26 21:12:48 +03:00
|
|
|
/*!
|
|
|
|
* IE10 viewport hack for Surface/desktop Windows 8 bug
|
2017-08-11 17:59:31 +03:00
|
|
|
* Copyright 2014-2017 The Bootstrap Authors
|
|
|
|
* Copyright 2014-2017 Twitter, Inc.
|
2016-01-26 21:12:48 +03:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
*/
|
|
|
|
|
|
|
|
// See the Getting Started docs for more information:
|
2017-08-11 17:59:31 +03:00
|
|
|
// https://getbootstrap.com/getting-started/#support-ie10-width
|
2016-01-26 21:12:48 +03:00
|
|
|
|
|
|
|
(function () {
|
2017-08-11 17:59:31 +03:00
|
|
|
'use strict'
|
2016-01-26 21:12:48 +03: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)
|
|
|
|
}
|
|
|
|
|
2017-08-11 17:59:31 +03:00
|
|
|
}())
|