aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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){