Skip to main content

Search and Top Navigation

#9311 closed bug (notabug)

Opened May 17, 2013 09:22AM UTC

Closed May 17, 2013 12:48PM UTC

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?

Attachments (0)
Change History (1)

Changed May 17, 2013 12:48PM UTC by scottgonzalez comment:1

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.