Draggable Problem with stack option

Draggable Problem with stack option

It looks like the stack option in draggable no longer works with a hash. If I use code like this:


$("#box2").draggable({ handle: "#box2header", stack: { group: "*", min: 50 }, cursor: 'move' })

The draggable no longer works. The draggable looks like it goes into drag mode but actual dragging doesn't work.

$("#box2").draggable({ handle: "#box2header", stack: "*", cursor: 'move' })

The workaround is to use a selector only and that does work, but the first syntax is breaking existing code in many places and it looks like that syntax is still support, but failing.

+++ Rick ---