We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
columnizeIt
Sometimes there is a need to rebuild columns of selected element when window is not resized. Now there is no way to do it.
This feature can be added by adding $inBox.data("columnize", columnizeIt); somewhere near line 142. In this case it would work like this:
$inBox.data("columnize", columnizeIt);
$('#columns').columnize(); // some time later... $('#columns').data('columnize')();
It is the easiest way to add this feature but it is dirty way. So it would be great if there is a more elegant way to do rebuilding.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes there is a need to rebuild columns of selected element when window is not resized. Now there is no way to do it.
This feature can be added by adding
$inBox.data("columnize", columnizeIt);
somewhere near line 142. In this case it would work like this:It is the easiest way to add this feature but it is dirty way. So it would be great if there is a more elegant way to do rebuilding.
The text was updated successfully, but these errors were encountered: