From 7a64afb4e36594ec549ad71b640d41a1b137e1fe Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Thu, 5 Jun 2008 06:35:16 +0000 Subject: [PATCH] sortable: fixed issue with dropOnEmpty not working, tolerance "guess" wasn't checked in the intersectsWith container method. --- ui/source/ui.sortable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/source/ui.sortable.js b/ui/source/ui.sortable.js index 847a054bf..b170f2c3c 100644 --- a/ui/source/ui.sortable.js +++ b/ui/source/ui.sortable.js @@ -94,7 +94,7 @@ $.widget("ui.sortable", $.extend($.ui.mouse, { var l = item.left, r = l + item.width, t = item.top, b = t + item.height; - if(this.options.tolerance == "pointer") { + if(this.options.tolerance == "pointer" || (this.options.tolerance == "guess" && this.helperProportions[this.floating ? 'width' : 'height'] > item[this.floating ? 'width' : 'height'])) { return (y1 + this.offset.click.top > t && y1 + this.offset.click.top < b && x1 + this.offset.click.left > l && x1 + this.offset.click.left < r); } else { @@ -112,7 +112,7 @@ $.widget("ui.sortable", $.extend($.ui.mouse, { var l = item.left, r = l + item.width, t = item.top, b = t + item.height; - if(this.options.tolerance == "pointer" || (this.options.tolerance == "guess" && this.currentItem[0]['offset'+(this.floating ? 'Width' : 'Height')] > item.item[0]['offset'+(this.floating ? 'Width' : 'Height')])) { + if(this.options.tolerance == "pointer" || (this.options.tolerance == "guess" && this.helperProportions[this.floating ? 'width' : 'height'] > item[this.floating ? 'width' : 'height'])) { if(!(y1 + this.offset.click.top > t && y1 + this.offset.click.top < b && x1 + this.offset.click.left > l && x1 + this.offset.click.left < r)) return false; -- 2.39.5