Open verybigelephants opened 2 years ago
waterfall('.container');
creates waterfall instance only for the first of the .container classes. It could create instances for all of the selector's elements, so you don't have to do things like this:
.container
$('.container').each(function(){ waterfall($(this)[0]); });
creates waterfall instance only for the first of the
.container
classes. It could create instances for all of the selector's elements, so you don't have to do things like this: