diff options
author | Richard Worth <rdworth@gmail.com> | 2009-03-18 12:22:08 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-03-18 12:22:08 +0000 |
commit | dfe72422e51290a8f53f232f0bbc8d4600999262 (patch) | |
tree | 06ac491d31c81b4d20407775c98989dca777924d /ui | |
parent | 434359bea21e984d27d557d0a930ae287be320ed (diff) | |
download | jquery-ui-dfe72422e51290a8f53f232f0bbc8d4600999262.tar.gz jquery-ui-dfe72422e51290a8f53f232f0bbc8d4600999262.zip |
Fixed #4341 - Selectable: option appendTo is ignored, helper always appends to body
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ui.selectable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.selectable.js b/ui/ui.selectable.js index 5eb34a54b..49cdd805f 100644 --- a/ui/ui.selectable.js +++ b/ui/ui.selectable.js @@ -75,7 +75,7 @@ $.widget("ui.selectable", $.extend({}, $.ui.mouse, { this._trigger("start", event); - $('body').append(this.helper); + $(options.appendTo).append(this.helper); // position helper (lasso) this.helper.css({ "z-index": 100, |