Open
Description
Hi
I would like to enable sortable lists across an iframe (with same origin).
I tried to create two lists with same 'group' but it doesn't work
I also tried to use "forceFallback: true" but nothing changed
Is this possible? How I can achieve that? Also a tricky solution is good for me
Thank you in advance
This example is very simple but it doesn't work anyway
Sortable.create(document.querySelector(".container"), { group: "group1" });
<div class="container"> <span>content1</span> <span>content2</span> </div>