mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-19 16:54:24 +01:00
Replace getElementsByTag by querySelector for IE10 Mobile plateform.
This commit is contained in:
parent
84c33a822d
commit
a53cf55be2
@ -24,7 +24,7 @@
|
||||
'@-ms-viewport{width:auto!important}'
|
||||
)
|
||||
);
|
||||
document.getElementsByTagName('head')[0].
|
||||
document.querySelector('head').
|
||||
appendChild(msViewportStyle);
|
||||
}
|
||||
|
||||
|
@ -852,7 +852,7 @@ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
|
||||
"@-ms-viewport{width:auto!important}"
|
||||
)
|
||||
)
|
||||
document.getElementsByTagName("head")[0].appendChild(msViewportStyle)
|
||||
document.querySelector("head").appendChild(msViewportStyle)
|
||||
}
|
||||
{% endhighlight %}
|
||||
<p>For more information and usage guidelines, read <a href="http://timkadlec.com/2013/01/windows-phone-8-and-device-width/">Windows Phone 8 and Device-Width</a>.</p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user