diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-09-12 10:12:38 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-09-12 10:12:38 -0700 |
commit | 6e2597f9f9d8ddbbc9e6d37c0df52cab34b32df1 (patch) | |
tree | b7536f329673c40aeff26468134757a052ed08bc /modules/organize/js/organize.js | |
parent | 961bc3b18571b5f3ad2a355b71d40c4830dd44ba (diff) | |
parent | 1d40c77c4c05a85fbf6bbb96820fb98cbaa989eb (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/organize/js/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 c30f89e0..7d204708 100644 --- a/modules/organize/js/organize.js +++ b/modules/organize/js/organize.js @@ -1,12 +1,12 @@ (function($) { $.organize = { micro_thumb_draggable: { - handle: ".ui-state-selected", + handle: ".ui-selected", distance: 10, cursorAt: { left: -10, top: -10}, appendTo: "#gOrganizeMicroThumbPanel", helper: function(event, ui) { - var selected = $(".ui-draggable.ui-state-selected img"); + var selected = $(".ui-draggable.ui-selected img"); if (selected.length) { var set = $('<div class="gDragHelper"></div>') .css({ @@ -37,7 +37,7 @@ }, start: function(event, ui) { - $("#gOrganizeMicroThumbPanel .ui-state-selected").hide(); + $("#gOrganizeMicroThumbPanel .ui-selected").hide(); }, drag: function(event, ui) { @@ -80,7 +80,7 @@ greedy: true, drop: function(event, ui) { if ($(event.target).hasClass("gViewOnly")) { - $(".ui-state-selected").show(); + $(".ui-selected").show(); $(".gOrganizeMicroThumbGridCell").css("borderStyle", "none"); } else { $.organize.do_drop({ |