From 312dfbb89e287432ba108b448fbc036e7fda4e27 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 22 Aug 2015 22:09:27 -0400 Subject: Adjust automatically the height of the placeholder during drag and drop --- assets/js/src/Board.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'assets/js/src') diff --git a/assets/js/src/Board.js b/assets/js/src/Board.js index ad1903d4..83d2e6c3 100644 --- a/assets/js/src/Board.js +++ b/assets/js/src/Board.js @@ -99,8 +99,8 @@ Board.prototype.resizeColumnHeight = function() { if ($(this).height() > 500) { $(this).height(500); } - else if ($(this).height() == 0) { - $(this).height(75); + else { + $(this).css("min-height", 100); } }); } @@ -112,6 +112,7 @@ Board.prototype.resizeColumnHeight = function() { Board.prototype.dragAndDrop = function() { var self = this; $(".board-task-list").sortable({ + forcePlaceholderSize: true, delay: 300, distance: 5, connectWith: ".board-task-list", @@ -124,6 +125,9 @@ Board.prototype.dragAndDrop = function() { ui.item.index() + 1, ui.item.parent().attr('data-swimlane-id') ); + }, + start: function(event, ui) { + ui.placeholder.height(ui.item.height()); } }); }; -- cgit v1.2.3