Skip to content

Instantly share code, notes, and snippets.

@stugoo
Created May 2, 2013 16:56
Show Gist options
  • Save stugoo/5503631 to your computer and use it in GitHub Desktop.
Save stugoo/5503631 to your computer and use it in GitHub Desktop.
window resize listener used to sort out flex slider
var listItems = $('.project_list > li')
$(window).bind('resize',function() {
var ww = $(window).width();
listItems.each(function() {
$(this).width(ww);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment