aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.selectable.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2008-07-16 00:28:25 +0000
committerRichard Worth <rdworth@gmail.com>2008-07-16 00:28:25 +0000
commit872c757f40e7a7efb88f1dab865a6ef93e490727 (patch)
tree9b7b2bb91caa337e7dbb1d565693c374c5b6faaa /ui/ui.selectable.js
parent6cfb6208ee121f21565a12f7bf2ca57bb074b44d (diff)
downloadjquery-ui-872c757f40e7a7efb88f1dab865a6ef93e490727.tar.gz
jquery-ui-872c757f40e7a7efb88f1dab865a6ef93e490727.zip
Added missing ui-selectable-helper class to helper/lasso element
Diffstat (limited to 'ui/ui.selectable.js')
-rw-r--r--ui/ui.selectable.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/ui.selectable.js b/ui/ui.selectable.js
index 814e7d48e..bcffb8ed8 100644
--- a/ui/ui.selectable.js
+++ b/ui/ui.selectable.js
@@ -47,7 +47,9 @@ $.widget("ui.selectable", $.extend({}, $.ui.mouse, {
this.mouseInit();
- this.helper = $(document.createElement('div')).css({border:'1px dotted black'});
+ this.helper = $(document.createElement('div'))
+ .css({border:'1px dotted black'})
+ .addClass("ui-selectable-helper");
},
toggle: function() {
if(this.options.disabled){