{"version":3,"sources":["ie10-viewport-bug-workaround.js"],"names":["navigator","userAgent","match","msViewportStyle","document","createElement","appendChild","createTextNode","querySelector"],"mappings":"CASA,WACE,aAYA,GAAGA,UAAAC,UAAAC,MAAA,mBAAA,CATD,IAAIC,gBAAkBC,SAASC,cAAc,SAC7CF,gBAAgBG,YACdF,SAASG,eACP,wCAGJH,SAASI,cAAc,QAAQF,YAAYH,kBAV/C","file":"ie10-viewport-bug-workaround.js","sourcesContent":["/*!\r\n * IE10 viewport hack for Surface/desktop Windows 8 bug\r\n * Copyright 2014-2015 Twitter, Inc.\r\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\r\n */\r\n\r\n// See the Getting Started docs for more information:\r\n// http://getbootstrap.com/getting-started/#support-ie10-width\r\n\r\n(function () {\r\n 'use strict';\r\n\r\n if (navigator.userAgent.match(/IEMobile\\/10\\.0/)) {\r\n var msViewportStyle = document.createElement('style')\r\n msViewportStyle.appendChild(\r\n document.createTextNode(\r\n '@-ms-viewport{width:auto!important}'\r\n )\r\n )\r\n document.querySelector('head').appendChild(msViewportStyle)\r\n }\r\n\r\n})();"]}