diff options
author | Scott González <scott.gonzalez@gmail.com> | 2009-01-14 02:12:44 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2009-01-14 02:12:44 +0000 |
commit | d422915b8e021ba1ee2445ce0a0d809e84a6ecd6 (patch) | |
tree | ea775477d4ba6025c9dbc13b712a3056ec7fb2f8 | |
parent | 4496146898e0cb632ce876af843b97a6bf9bced0 (diff) | |
download | jquery-ui-d422915b8e021ba1ee2445ce0a0d809e84a6ecd6.tar.gz jquery-ui-d422915b8e021ba1ee2445ce0a0d809e84a6ecd6.zip |
Draggable: Fixed connectToSortable option.
-rw-r--r-- | ui/ui.draggable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index cbc686575..8eb60b56c 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -464,7 +464,7 @@ $.ui.plugin.add("draggable", "connectToSortable", { this.instance._mouseStop(event); //Also propagate receive event, since the sortable is actually receiving a element - this.instance.element.triggerHandler("sortreceive", [event, $.extend(this.instance._ui(), { sender: inst.element })], this.instance.options["receive"]); + this.instance.element.triggerHandler("sortreceive", [event, $.extend(this.instance._uiHash(), { sender: inst.element })], this.instance.options["receive"]); this.instance.options.helper = this.instance.options._helper; |