Lukas Oppermann
Lukas Oppermann
Hey, as I am not using this package in any project anymore, I can not justify putting too much time into it. This is why I want to add one...
When an item is dragged outside a valid sortable target and a new option `invalidDrop` is set to `remove`, the item should be remove from the dom & the sortable.
This will go in line with the new api #345 The idea is to turn sortable into an ES6 class which will not only give us some helpful features, but...
The events should be reworked to the following criteria: - [ ] provide all events possible to allow for more hooks into the system - [x] move events to new...
Clicking on links/buttons should work, while they are still draggable. This could potentially work by only firing sort start even if the user has a mousedown event and moves the...
This issue defines the API for sortable for V1.0. ## Main goals - easy to understand - useful configuration out of the box - flexible to fit as many userneeds...
Replace data with `Map`s stored in [Web Storage](https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API)? For options `new Map(Object.entries(options))` - [ ] fix #220
We should figure out how to best do some kind of integration testing, to make sure everything works fine together. @jMuzsik let me know if you have experience / an...
When an item is dropped outside of any valid sortable it should be moved to its original position (not its last valid position). This should maybe be done using an...
When a new item is added to a sortable, currently the user needs to run a reinit. It would be better if it would automatically work, by adding the item...