aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAndrei Picus <office.nightcrawler@gmail.com>2014-01-14 11:10:27 +0200
committerMike Sherov <mike.sherov@gmail.com>2014-08-13 20:27:26 -0400
commit1cfebf803beedef05e8dcdd54e34d10c412a9a2b (patch)
tree70f7b92a1c383846d3bc191e9f40c2e447d6ee85 /ui
parent4dad6bb99dae280108338c040d016f795d0da328 (diff)
downloadjquery-ui-1cfebf803beedef05e8dcdd54e34d10c412a9a2b.tar.gz
jquery-ui-1cfebf803beedef05e8dcdd54e34d10c412a9a2b.zip
Sortable: fire "over" and "out" even when a connectWith hasn't changed
Fixes #9335
Diffstat (limited to 'ui')
-rw-r--r--ui/sortable.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/sortable.js b/ui/sortable.js
index c7edd3d1f..da4d13117 100644
--- a/ui/sortable.js
+++ b/ui/sortable.js
@@ -911,6 +911,10 @@ return $.widget("ui.sortable", $.ui.mouse, {
}
if(this.currentContainer === this.containers[innermostIndex]) {
+ if ( !this.currentContainer.containerCache.over ) {
+ this.containers[ innermostIndex ]._trigger( "over", event, this._uiHash() );
+ this.currentContainer.containerCache.over = 1;
+ }
return;
}