Skip to content

Instantly share code, notes, and snippets.

@itsonlyjames
Created July 17, 2015 08:48
Show Gist options
  • Save itsonlyjames/9ce713a800d11a69fabe to your computer and use it in GitHub Desktop.
Save itsonlyjames/9ce713a800d11a69fabe to your computer and use it in GitHub Desktop.
Isotope layout/responsive with facetwp sorting plugin
// initially fire isotope layout
var $grid = $('.grid').isotope({
itemSelector: '.grid-item',
transitionDuration: 0,
masonry: {
columnWidth: 100
}
});
// runs isotope reload on facetwp change
$(document).on('facetwp-loaded', function() {
$grid.isotope('reloadItems').isotope();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment