Opened 10 years ago

Closed 10 years ago

#9311 closed bug (notabug)

nested draggable not working anymore since 1.10.2

Reported by: hybraz Owned by:
Priority: minor Milestone: none
Component: ui.draggable Version: 1.10.2
Keywords: Cc:
Blocked by: Blocking:

Description

Hi it seems I can't make a draggable inside another draggable, this was possible in 1.10.1

have a look at this fiddle

http://jsfiddle.net/HztHj/

dragging the red little square correctly rotates the large green square in 1.10.1, while linking 1.10.2 and 1.10.3 it only drags everything but not rotate...is it a bug or am I missing something?

Change History (1)

comment:1 Changed 10 years ago by Scott González

Resolution: notabug
Status: newclosed

This is because you have an invalid value for handle:

        $('#bubblehandle').draggable({
            handle: '#bubblehandle',

The handle must be a descendant of the element. In this case, you want to just leave the option out completely.

Note: See TracTickets for help on using tickets.