From 65289463debbc3d32cf4de045372bc7e076f7e0c Mon Sep 17 00:00:00 2001 From: Eduardo Lundgren Date: Fri, 21 Nov 2008 18:41:57 +0000 Subject: [PATCH] Sortables: using isOverAxis. --- ui/ui.sortable.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js index 61745f91f..465dd5ea5 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -395,8 +395,8 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { return false; } - var isOverElementHeight = $.ui.isOverHeight(helperTop + dyClick, itemTop, itemHeight); - var isOverElementWidth = $.ui.isOverWidth(helperLeft + dxClick, itemLeft, itemWidth); + var isOverElementHeight = $.ui.isOverAxis(helperTop + dyClick, itemTop, itemHeight); + var isOverElementWidth = $.ui.isOverAxis(helperLeft + dxClick, itemLeft, itemWidth); var isOverElement = isOverElementHeight && isOverElementWidth; var verticalDirection = this._getDragVerticalDirection(); var horizontalDirection = this._getDragHorizontalDirection(); @@ -429,9 +429,9 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { var itemHeight = item.height, itemWidth = item.width; var itemTop = item.top, itemLeft = item.left; - var isOverBottomHalf = $.ui.isOverHeight(helperTop + dyClick, itemTop + (itemHeight/2), itemHeight); + var isOverBottomHalf = $.ui.isOverAxis(helperTop + dyClick, itemTop + (itemHeight/2), itemHeight); var isOverTopHalf = !isOverBottomHalf; - var isOverRightHalf = $.ui.isOverWidth(helperLeft + dxClick, itemLeft + (itemWidth/2), itemWidth); + var isOverRightHalf = $.ui.isOverAxis(helperLeft + dxClick, itemLeft + (itemWidth/2), itemWidth); var isOverLeftHalf = !isOverRightHalf; var verticalDirection = this._getDragVerticalDirection(); var horizontalDirection = this._getDragHorizontalDirection(); -- 2.39.5