source: EcnlProtoTool/trunk/webapp/webmrbc/bootstrap/js/ie10-viewport-bug-workaround.js@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/javascript
File size: 641 bytes
Line 
1/*!
2 * IE10 viewport hack for Surface/desktop Windows 8 bug
3 * Copyright 2014-2015 Twitter, Inc.
4 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5 */
6
7// See the Getting Started docs for more information:
8// http://getbootstrap.com/getting-started/#support-ie10-width
9
10(function () {
11 'use strict';
12
13 if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
14 var msViewportStyle = document.createElement('style')
15 msViewportStyle.appendChild(
16 document.createTextNode(
17 '@-ms-viewport{width:auto!important}'
18 )
19 )
20 document.querySelector('head').appendChild(msViewportStyle)
21 }
22
23})();
Note: See TracBrowser for help on using the repository browser.