Skip to content

Commit fb38c20

Browse files
committed
Droppable: Added missing semicolon.
1 parent 3ec0c2e commit fb38c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.droppable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ $.ui.intersect = function(draggable, droppable, toleranceMode) {
207207
case 'pointer':
208208
draggableLeft = ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left);
209209
draggableTop = ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top);
210-
return isOverAxis( draggableTop, t, droppable.proportions.height ) && isOverAxis( draggableLeft, l, droppable.proportions.width )
210+
return isOverAxis( draggableTop, t, droppable.proportions.height ) && isOverAxis( draggableLeft, l, droppable.proportions.width );
211211
case 'touch':
212212
return (
213213
(y1 >= t && y1 <= b) || // Top edge touching

0 commit comments

Comments
 (0)