aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2009-01-14 02:12:44 +0000
committerScott González <scott.gonzalez@gmail.com>2009-01-14 02:12:44 +0000
commitd422915b8e021ba1ee2445ce0a0d809e84a6ecd6 (patch)
treeea775477d4ba6025c9dbc13b712a3056ec7fb2f8
parent4496146898e0cb632ce876af843b97a6bf9bced0 (diff)
downloadjquery-ui-d422915b8e021ba1ee2445ce0a0d809e84a6ecd6.tar.gz
jquery-ui-d422915b8e021ba1ee2445ce0a0d809e84a6ecd6.zip
Draggable: Fixed connectToSortable option.
-rw-r--r--ui/ui.draggable.js2
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;