From 9683a2a114135865eb49578e308a204a735b0256 Mon Sep 17 00:00:00 2001 From: Juanfran Date: Tue, 27 Jan 2015 08:49:50 +0100 Subject: [PATCH] fix #1968 - taskboard columns should have max-width --- app/coffee/modules/taskboard/main.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/coffee/modules/taskboard/main.coffee b/app/coffee/modules/taskboard/main.coffee index 0d494b5f..00cef123 100644 --- a/app/coffee/modules/taskboard/main.coffee +++ b/app/coffee/modules/taskboard/main.coffee @@ -327,6 +327,7 @@ module.directive("tgTaskboardTableHeightFixer", TaskboardTableHeightFixerDirecti TaskboardSquishColumnDirective = (rs) -> avatarWidth = 40 + maxColumnWidth = 300 link = ($scope, $el, $attrs) -> $scope.$on "sprint:task:moved", () => @@ -374,7 +375,7 @@ TaskboardSquishColumnDirective = (rs) -> if width column.css('max-width', width) else - column.css("max-width", 'none') + column.css("max-width", maxColumnWidth) refreshTaskboardTableWidth = () => columnWidths = []