Improve column hide/show with swimlanes

This commit is contained in:
Frederic Guillot
2015-08-23 11:32:43 -04:00
parent 1f2f5d2c10
commit 297c11e48e
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -225,7 +225,7 @@ Board.prototype.hideColumn = function(columnId) {
$(".board-column-" + columnId + " .board-rotation").each(function() {
var position = $(".board-swimlane").position();
$(".board-column-task-collapsed").height($(window).height() - position.top);
// $(".board-column-task-collapsed").height($(window).height() - position.top);
$(this).css("width", $(".board-column-" + columnId + "").height());
});