Fix: On mobile infinite scrolling didn't work anymore

- listBody.js:755 doesn't trigger an event when scrolling
This commit is contained in:
Martin Filser 2021-11-21 14:16:25 +01:00
parent 72fa10761a
commit bfb3837ee4
2 changed files with 2 additions and 1 deletions

View file

@ -180,6 +180,7 @@
border-bottom: 1px solid darken(white, 20%)
.list
display: contents
flex-basis: auto
width: 100%
border-left: 0px

View file

@ -57,7 +57,7 @@ function initSortable(boardComponent, $listsDom) {
tolerance: 'pointer',
helper: 'clone',
items: '.js-list:not(.js-list-composer)',
placeholder: 'list placeholder',
placeholder: 'js-list placeholder',
distance: 7,
start(evt, ui) {
ui.placeholder.height(ui.helper.height());