mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
Sortable: Fix incorrect top containment for document
Fixes #14927 Closes gh-1695
This commit is contained in:
committed by
Scott González
parent
48257cd9ca
commit
c19fc10e84
@@ -1072,7 +1072,7 @@ return $.widget( "ui.sortable", $.ui.mouse, {
|
||||
0 - this.offset.relative.left - this.offset.parent.left,
|
||||
0 - this.offset.relative.top - this.offset.parent.top,
|
||||
o.containment === "document" ? this.document.width() : this.window.width() - this.helperProportions.width - this.margins.left,
|
||||
( o.containment === "document" ? this.document.width() : this.window.height() || this.document[ 0 ].body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top
|
||||
( o.containment === "document" ? ( this.document.height() || document.body.parentNode.scrollHeight ) : this.window.height() || this.document[ 0 ].body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user