Sortable: Reverted a line back to 1.8.24 version. Fixed #8792 - Sortable on floating items only allows items to be placed on the last row #818
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Sortable's _contactContainers() was modified between version 1.8.24 and version 1.9.1.
In the modification, line 740 was edited from:
"} else if(this.currentContainer != this.containers[innermostIndex]) {"
to:
"} else {"
The modification broke the sorting of floated items.
Sorted items are only able to be placed on the bottom row of sortable containers.
This commit reverts line 740 back to the 1.8.24 version that works.