diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-11 12:56:42 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-11 12:56:42 -0700 |
commit | 82d61c698e47b7b838b9289a9d86bb275da30abb (patch) | |
tree | f236c9b6c16fe73a1a08beb6e10003fb015c92c3 /modules/organize/js | |
parent | afc1de54b1119680c144f474f1c587f3c69b6813 (diff) |
Revert "Upgraded to the latest svn version of selectable and applied local fixes to address ticket #696"
This reverts commit afc1de54b1119680c144f474f1c587f3c69b6813.
Diffstat (limited to 'modules/organize/js')
-rw-r--r-- | modules/organize/js/organize.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/organize/js/organize.js b/modules/organize/js/organize.js index 7d204708..c30f89e0 100644 --- a/modules/organize/js/organize.js +++ b/modules/organize/js/organize.js @@ -1,12 +1,12 @@ (function($) { $.organize = { micro_thumb_draggable: { - handle: ".ui-selected", + handle: ".ui-state-selected", distance: 10, cursorAt: { left: -10, top: -10}, appendTo: "#gOrganizeMicroThumbPanel", helper: function(event, ui) { - var selected = $(".ui-draggable.ui-selected img"); + var selected = $(".ui-draggable.ui-state-selected img"); if (selected.length) { var set = $('<div class="gDragHelper"></div>') .css({ @@ -37,7 +37,7 @@ }, start: function(event, ui) { - $("#gOrganizeMicroThumbPanel .ui-selected").hide(); + $("#gOrganizeMicroThumbPanel .ui-state-selected").hide(); }, drag: function(event, ui) { @@ -80,7 +80,7 @@ greedy: true, drop: function(event, ui) { if ($(event.target).hasClass("gViewOnly")) { - $(".ui-selected").show(); + $(".ui-state-selected").show(); $(".gOrganizeMicroThumbGridCell").css("borderStyle", "none"); } else { $.organize.do_drop({ |