Max Hoffmann

Results 28 comments of Max Hoffmann
trafficstars

> Am i right to think that its the Shadow DOM that stops it from working? Unfortunately yes, but supporting Shadow DOM is a big goal for us and currently...

@katasup One way to get around the issue is to increase the default drag delay: ```js new Draggable(containers, { // ... delay: 300, // ... }) ``` that way there...

@narrative1st interesting, could you elaborate a little more? I want to understand the problem a little more to give a better solution to your problem. A codepen or code example...

Thanks for asking! We are planning to build a `NestedSortable` module or bake nesting into the existing `Sortable` module, but this is planned for post stable release. No ETA for...

Thanks for your request @atzcl ! Yes, we are planning to build in a `copy` feature for `Sortable`, which will work similar to dragula copy function 👍 I think it's...

@madebyaaron thanks! Interesting idea! How would you see this work? I had a similar idea for multi-touch support, i.e. ability to pick up multiple draggables with multiple fingers. But this...

@GRBurst I am also not 💯 sure I get the issue. There are three elements that matter during a drag operation - `originalSource` which is the original element that gets...

Thanks for your question! You should be able to use the Collidable plugin for that: ``` import {Sortable, Plugins} from '@shopify/draggable'; const sortable = new Sortable(containers, { draggable: 'li', collidables:...

Right, that makes sense to me! Events can't be canceled asynchronously, so there is no way to do this with events atm. We were planning to add a `Sortable#revert` method,...

@albertodarblade Oh interesting, are you doing anything on event handlers? Also, could you send a screenshot with the error message expanded? That way we can see what is failing and...