Advertisement
srikat

Untitled

Mar 7th, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(function($){
  2.  
  3.     var $container = $('.related-posts-list')
  4.     // initialize Isotope
  5.     $container.isotope({
  6.         // options...
  7.         resizable: false, // disable normal resizing
  8.         // set columnWidth to a percentage of container width
  9.         masonry: { columnWidth: $container.width() / 4 }
  10.     });
  11.  
  12.     // update columnWidth on window resize
  13.     $(window).smartresize(function(){
  14.         $container.isotope({
  15.             // update columnWidth to a percentage of container width
  16.             masonry: { columnWidth: $container.width() / 4 }
  17.         });
  18.     });
  19.  
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement