jQuery UI 1.11.2 draggable and connect to sortable issue
Please see below examples - using jQuery UI 1.11.1 I am able to define draggables that connect to multiple sortables and all works fine:
$('#list .item').draggable({
helper: 'clone',
connectToSortable: '.table-cell'
});
$('.table-cell').sortable({
connectWith: '.table-cell',
items: '.item'
});
However when using jQuery UI 1.11.2 the draggable clone loses it's style and moves away from the cursor when entering sortable areas:
Is this a bug? Or does the code need to be altered to better work with 1.11.2?
Thanks.