diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-11-20 12:15:05 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-11-20 12:15:05 -0800 |
commit | a1fbc8b1e14049765a3da07a57dffdf4205bc492 (patch) | |
tree | 4d5d7af8024a94be742249d6f76f4606097f3875 /modules/organize/js/organize.js | |
parent | aa880c2b10331586a4c303dd6d6c1bf8a8e8b15d (diff) |
Correct the reference so selections are handled properly when dragging the lasso
Diffstat (limited to 'modules/organize/js/organize.js')
-rw-r--r-- | modules/organize/js/organize.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/organize/js/organize.js b/modules/organize/js/organize.js index 701bad4c..3dbf9a55 100644 --- a/modules/organize/js/organize.js +++ b/modules/organize/js/organize.js @@ -166,7 +166,7 @@ .selectable({ filter: ".g-organize-microthumb-grid-cell", selected: function(event, ui) { - ui.selected.children(".g-organize-microthumb").addClass("ui-state-highlight"); + $(ui.selected).children(".g-organize-microthumb").addClass("ui-state-highlight"); }, unselected: function(event, ui) { $(ui.unselected).children(".g-organize-microthumb").removeClass("ui-state-highlight"); |