Permalink
Browse files

Fixed #3077 (Selectable cannot be selected by click)

  • Loading branch information...
1 parent 3887ee7 commit 2809d50800dc0da1d43766f942e2fb9330d1e4c6 @rdworth rdworth committed Jan 16, 2009
Showing with 16 additions and 6 deletions.
  1. +16 −6 ui/ui.selectable.js
View
@@ -33,8 +33,8 @@ $.widget("ui.selectable", $.extend({}, $.ui.mouse, {
$element: $this,
left: pos.left,
top: pos.top,
- right: pos.left + $this.width(),
- bottom: pos.top + $this.height(),
+ right: pos.left + $this.outerWidth(),
+ bottom: pos.top + $this.outerHeight(),
startselected: false,
selected: $this.hasClass('ui-selected'),
selecting: $this.hasClass('ui-selecting'),
@@ -105,11 +105,21 @@ $.widget("ui.selectable", $.extend({}, $.ui.mouse, {
}
});
- var isSelectee = false;
$(event.target).parents().andSelf().each(function() {
- if($.data(this, "selectable-item")) isSelectee = true;
+ var selectee = $.data(this, "selectable-item");
+ if (selectee) {
+ selectee.$element.removeClass("ui-unselecting").addClass('ui-selecting');
+ selectee.unselecting = false;
+ selectee.selecting = true;
+ selectee.selected = true;
+ // selectable SELECTING callback
+ self._trigger("selecting", event, {
+ selecting: selectee.element
+ });
+ return false;
+ }
});
- return this.options.keyboard ? !isSelectee : true;
+
},
_mouseDrag: function(event) {
@@ -238,7 +248,7 @@ $.extend($.ui.selectable, {
autoRefresh: true,
cancel: ":input,option",
delay: 0,
- distance: 1,
+ distance: 0,
filter: '*',
tolerance: 'touch'
}

0 comments on commit 2809d50

Please sign in to comment.