diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2009-01-29 12:35:38 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2009-01-29 12:35:38 +0000 |
commit | 669bdb333ae9c52e04e177e4a7d2e21353d1bb1b (patch) | |
tree | 481a88589c902d2e1953764a43f86c309525b011 /ui/ui.draggable.js | |
parent | c88df4d3ee26d856cfad87cd439b45157857503c (diff) | |
download | jquery-ui-669bdb333ae9c52e04e177e4a7d2e21353d1bb1b.tar.gz jquery-ui-669bdb333ae9c52e04e177e4a7d2e21353d1bb1b.zip |
draggable,droppable,sortable: deprecated ui.absolutePosition, changed to ui.offset (fixes #3978,#3977,#3976)
Diffstat (limited to 'ui/ui.draggable.js')
-rw-r--r-- | ui/ui.draggable.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index b8bfaa0c7..95d5ea0bd 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -387,7 +387,8 @@ $.widget("ui.draggable", $.extend({}, $.ui.mouse, { return { helper: this.helper, position: this.position, - absolutePosition: this.positionAbs + absolutePosition: this.positionAbs, //deprecated + offset: this.positionAbs }; } |