aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-03-18 12:22:08 +0000
committerRichard Worth <rdworth@gmail.com>2009-03-18 12:22:08 +0000
commitdfe72422e51290a8f53f232f0bbc8d4600999262 (patch)
tree06ac491d31c81b4d20407775c98989dca777924d /ui
parent434359bea21e984d27d557d0a930ae287be320ed (diff)
downloadjquery-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.js2
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,