Santa Fe Institute Collaboration Platform

COMPLEX TIME: Adaptation, Aging, & Arrow of Time

Get Involved!
Contact: Caitlin Lorraine McShea, Program Manager, cmcshea@santafe.edu

Difference between revisions of "MediaWiki:Common.js"

From Complex Time
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
if (/iPhone|iPod|iPad/.test(navigator.userAgent)) {
+
/* if (/iPhone|iPod|iPad/.test(navigator.userAgent)) { */
 
   $('iframe').wrap(function() {
 
   $('iframe').wrap(function() {
 
     var $this = $(this);
 
     var $this = $(this);
Line 11: Line 11:
 
     });
 
     });
 
   });
 
   });
}
+
/* } */

Revision as of 12:22, January 26, 2019

/* Any JavaScript here will be loaded for all users on every page load. */

/* if (/iPhone|iPod|iPad/.test(navigator.userAgent)) { */
  $('iframe').wrap(function() {
    var $this = $(this);
    return $('<div></div>').css({
      width: $this.attr('width'),
      height: $this.attr('height'),
      overflow: 'scroll',
      '-webkit-overflow-scrolling': 'touch'
    });
  });
/* } */