diff options
Diffstat (limited to 'ui/widgets/droppable.js')
-rw-r--r-- | ui/widgets/droppable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widgets/droppable.js b/ui/widgets/droppable.js index f683c7893..67bcb693d 100644 --- a/ui/widgets/droppable.js +++ b/ui/widgets/droppable.js @@ -253,7 +253,7 @@ $.widget( "ui.droppable", { } } ); -var intersect = ( function() { +var intersect = $.ui.intersect = ( function() { function isOverAxis( x, reference, size ) { return ( x >= reference ) && ( x < ( reference + size ) ); } |