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 7: Line 7:
 
       width: $this.attr('width'),
 
       width: $this.attr('width'),
 
       height: $this.attr('height'),
 
       height: $this.attr('height'),
       overflow: 'auto',
+
       overflow: 'scroll',
 
       '-webkit-overflow-scrolling': 'touch'
 
       '-webkit-overflow-scrolling': 'touch'
 
     });
 
     });
 
   });
 
   });
 
}
 
}

Revision as of 12:13, 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'
    });
  });
}