payment gateway for rpn cn
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ie10-viewport-bug-workaround.js 641B

1234567891011121314151617181920212223
  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. // See the Getting Started docs for more information:
  7. // http://getbootstrap.com/getting-started/#support-ie10-width
  8. (function () {
  9. 'use strict';
  10. if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
  11. var msViewportStyle = document.createElement('style')
  12. msViewportStyle.appendChild(
  13. document.createTextNode(
  14. '@-ms-viewport{width:auto!important}'
  15. )
  16. )
  17. document.querySelector('head').appendChild(msViewportStyle)
  18. }
  19. })();