From 2a5db4d25325241587a081ef27e399504df0ea19 Mon Sep 17 00:00:00 2001 From: danbrianwhite Date: Mon, 8 Oct 2012 13:45:46 -0300 Subject: [PATCH] Update src/jquery.columnizer.js Fixed a bug that caused an extra div wrapper around columnized content when it only used one column. By appending the contents of the $destroyable instead of $destroyable, this issue is solved. --- src/jquery.columnizer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.columnizer.js b/src/jquery.columnizer.js index ad75643..e059779 100644 --- a/src/jquery.columnizer.js +++ b/src/jquery.columnizer.js @@ -342,7 +342,7 @@ overflow.innerHTML = html; }else{ - $col.append($destroyable); + $col.append($destroyable.contents()); } $inBox.data("columnizing", false);