diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-12-06 14:43:35 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-12-06 14:43:35 -0500 |
commit | fb38c20763c637e4d05ca2a48e25db4b380754be (patch) | |
tree | 376128bd311271e68a24722c5922c68a714c5c6e /ui/jquery.ui.droppable.js | |
parent | 3ec0c2e5728da9b9b9955dfe18073d3985e61a52 (diff) | |
download | jquery-ui-fb38c20763c637e4d05ca2a48e25db4b380754be.tar.gz jquery-ui-fb38c20763c637e4d05ca2a48e25db4b380754be.zip |
Droppable: Added missing semicolon.
Diffstat (limited to 'ui/jquery.ui.droppable.js')
-rw-r--r-- | ui/jquery.ui.droppable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.droppable.js b/ui/jquery.ui.droppable.js index aebca8fae..e2da0b9f6 100644 --- a/ui/jquery.ui.droppable.js +++ b/ui/jquery.ui.droppable.js @@ -207,7 +207,7 @@ $.ui.intersect = function(draggable, droppable, toleranceMode) { case 'pointer': draggableLeft = ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left); draggableTop = ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top); - return isOverAxis( draggableTop, t, droppable.proportions.height ) && isOverAxis( draggableLeft, l, droppable.proportions.width ) + return isOverAxis( draggableTop, t, droppable.proportions.height ) && isOverAxis( draggableLeft, l, droppable.proportions.width ); case 'touch': return ( (y1 >= t && y1 <= b) || // Top edge touching |