Advertisement
Guest User

Untitled

a guest
Sep 11th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         <script type="text/javascript">
  2.             (function(doc) {
  3.  
  4.                 var addEvent = 'addEventListener',
  5.                     type = 'gesturestart',
  6.                     qsa = 'querySelectorAll',
  7.                     scales = [1, 1],
  8.                     meta = qsa in doc ? doc[qsa]('meta[name=viewport]') : [];
  9.  
  10.                 function fix() {
  11.                     meta.content = 'width=device-width,minimum-scale=' + scales[0] + ',maximum-scale=' + scales[1];
  12.                     doc.removeEventListener(type, fix, true);
  13.                 }
  14.  
  15.                 if ((meta = meta[meta.length - 1]) && addEvent in doc) {
  16.                     fix();
  17.                     scales = [.25, 1.6];
  18.                     doc[addEvent](type, fix, true);
  19.                 }
  20.  
  21.             }(document));
  22.         </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement