2014-04-21 01:09:47 +02:00
|
|
|
/*!
|
|
|
|
* IE10 viewport hack for Surface/desktop Windows 8 bug
|
2016-05-20 18:04:31 +02:00
|
|
|
* Copyright 2014-2015 The Bootstrap Authors
|
2015-04-29 11:11:58 +02:00
|
|
|
* Copyright 2014-2015 Twitter, Inc.
|
2015-05-15 00:50:07 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2014-04-21 01:09:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
// See the Getting Started docs for more information:
|
2016-10-03 18:55:59 +02:00
|
|
|
// https://getbootstrap.com/getting-started/#support-ie10-width
|
2014-04-21 01:09:47 +02:00
|
|
|
|
|
|
|
(function () {
|
2014-03-17 08:12:55 +01:00
|
|
|
'use strict';
|
2015-04-29 11:11:58 +02:00
|
|
|
|
2014-04-21 01:09:47 +02:00
|
|
|
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
|
|
|
|
var msViewportStyle = document.createElement('style')
|
|
|
|
msViewportStyle.appendChild(
|
|
|
|
document.createTextNode(
|
|
|
|
'@-ms-viewport{width:auto!important}'
|
|
|
|
)
|
|
|
|
)
|
2015-10-28 23:07:48 +01:00
|
|
|
document.head.appendChild(msViewportStyle)
|
2014-04-21 01:09:47 +02:00
|
|
|
}
|
2015-04-29 11:11:58 +02:00
|
|
|
|
2014-04-21 01:09:47 +02:00
|
|
|
})();
|