Created
May 2, 2013 16:56
-
-
Save stugoo/5503631 to your computer and use it in GitHub Desktop.
window resize listener used to sort out flex slider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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