Skip to content

Instantly share code, notes, and snippets.

@Giannisduke
Forked from itsonlyjames/scripts.js
Created December 29, 2016 13:00
Show Gist options
  • Save Giannisduke/1850a6e650a03712835766a8c821dabb to your computer and use it in GitHub Desktop.
Save Giannisduke/1850a6e650a03712835766a8c821dabb 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