Columnizer-jQuery-Plugin
Columnizer-jQuery-Plugin copied to clipboard
Regression - last column is smaller.
This is how current version (1.6) works (in IE8-9):

This is an older version of columnizer:

Call:
$('.citylist').columnize({ width: 180 });
Unfortunately, I don't know a number of old version (I have minimized version only)
It lacks manualBreaks, cssClassPrefix options, appendSafe function etc.
If you don't have no idea about the bug reason, I'll try to find a breaking commit.
If you could track down the commit, that'd help me quite a lot. Also, could you send me the minimized version of colonizer that you're using? I may be able to reverse engineer the version number from it, but knowing the commit would definitely be better. Thanks!
Ok, I got it: f01e71645c2f6b42431f72bbd6c32dd5100a6afe
I found that this commit fixes some cases, but brokes another ones. It works bad with small portion of content, and it does not handle margins/line-heights properly. Just look:
This is how new version (with the applied commit) works:

This is how old version (just before applying the commit):

This is the test html: https://gist.github.com/danyaPostfactum/8109088
By the way, I'm using line-height instead of margin in my project, because webkit works bad with margins (I can see "steps" of spitted margins)
I should note that I'm using IE10 switched to IE9 or IE8 mode. I did not test it in original IE9.
Awesome, thanks for tracking that commit down. I'll try and find some time soon to debug what went wrong
On Mon, Dec 23, 2013 at 11:27 PM, danyaPostfactum [email protected]:
Ok, I got it: f01e716https://github.com/adamwulf/Columnizer-jQuery-Plugin/commit/f01e71645c2f6b42431f72bbd6c32dd5100a6afe
I found that this commit fixes some cases, but brokes another ones. It works bad with small portion of content, and it does not handle margins/line-heights properly. Just look: This is how new version (with the applied commit) works: [image: new-columnizer]https://f.cloud.github.com/assets/1527097/1804574/e8654f48-6c5a-11e3-98d3-3f3a6add7bae.png
This is how old version (just before applying the commit): [image: old-columnizer]https://f.cloud.github.com/assets/1527097/1804575/fe8f985a-6c5a-11e3-90d1-0a444d70dfe7.png
This is the test html: https://gist.github.com/danyaPostfactum/8109088
By the way, I'm using line-height instead of margin in my project, because webkit works bad with margins (I can see "steps" of spitted margins)
I should note that I'm using IE10 switched to IE9 or IE8 mode. I did not test it in original IE9.
— Reply to this email directly or view it on GitHubhttps://github.com/adamwulf/Columnizer-jQuery-Plugin/issues/140#issuecomment-31159240 .
Thank you for great plugin!