-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
column classes are not being added to the columns #2
Comments
Yes, in the new version of waterfall I’ve decided to avoid redundant columns, simply placing items to the container with Docs will be updated soon. |
I also using this feature for 2-columns timeline. $('.waterfall-item').each(function() {
var $this = $(this);
if ($this.position().left == 0) {
$this.addClass('left-column');
} else {
$this.addClass('right-column');
}
}); Maybe this will be useful for you |
I can assign classes to items according to their columns, if you wish. |
If you can, that will be great) |
I've been trying to use waterfall on a tumble feed and the master build doesn't add the column classes. I ended up pulling the '.js' from the demo on the site which works.
The text was updated successfully, but these errors were encountered: