Advertisement
Guest User

JPIBFI - JetpackInfinite Scroll

a guest
Jan 19th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;(function($){
  2.     "use strict";
  3.  
  4.     $(document).ready( function() {
  5.         $( document.body ).on( 'post-load', function () {
  6.             var $elements = jpibfi.addImages( 'div.infinite-wrap img'); //adds attributes to new images that are caught by the given selector
  7.  
  8.             setTimeout( function(){
  9.                 jpibfi.prepareImages( $elements ); //checks image size and prepares images when using static, 3 seconds timeout to make sure images are loaded
  10.             }, 3000 );
  11.  
  12.         });
  13.     });
  14.  
  15. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement