]> source.dussan.org Git - jquery-ui.git/commitdiff
Sortable: Fixed a bug with over/out events and connected draggables.
authorScott González <scott.gonzalez@gmail.com>
Tue, 16 Mar 2010 01:15:57 +0000 (01:15 +0000)
committerScott González <scott.gonzalez@gmail.com>
Tue, 16 Mar 2010 01:15:57 +0000 (01:15 +0000)
Fixes #5346 - over and out events not triggered when draggable connected with single (non-nested) sortable.

ui/jquery.ui.sortable.js

index d29e708e8f3e36bc2c236214e3ed00cbcb86c065..28be062f667b74f5f3cee7479a6db16089d20a8f 100644 (file)
@@ -700,8 +700,11 @@ $.widget("ui.sortable", $.ui.mouse, {
                // if no intersecting containers found, return 
                if(!innermostContainer) return; 
 
-               // move the item into the container if it's not there already 
-               if(this.currentContainer != this.containers[innermostIndex]) { 
+               // move the item into the container if it's not there already
+               if(this.containers.length === 1) {
+                       this.containers[innermostIndex]._trigger("over", event, this._uiHash(this));
+                       this.containers[innermostIndex].containerCache.over = 1;
+               } else if(this.currentContainer != this.containers[innermostIndex]) { 
 
                        //When entering a new container, we will find the item with the least distance and append our item near it 
                        var dist = 10000; var itemWithLeastDistance = null; var base = this.positionAbs[this.containers[innermostIndex].floating ? 'left' : 'top'];