diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-17 08:49:37 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-17 08:49:37 -0700 |
commit | dd9f4b6d7feb6664fa1aaeed41b8a9dce02197c2 (patch) | |
tree | 530a348d1aecbe44a8877ba64ff598cdb0ae4ed7 /modules/organize/js/organize.js | |
parent | 7fc833a392aaa4a25e98bab122cddb50f3abcde7 (diff) |
The rearrange functionality works. but it is slower than shit. I've left the debug statements in until we can solve this issue.
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 035c79c7..7a70ea5e 100644 --- a/modules/organize/js/organize.js +++ b/modules/organize/js/organize.js @@ -58,7 +58,7 @@ drop: function(event, ui) { $.organize.do_drop({ url: rearrange_url.replace("__TARGET_ID__", $(".currentDropTarget").attr("ref")) - .replace("__BEFORE__", $(".currentDropTarget").css("borderLeftStyle") == "solid"), + .replace("__BEFORE__", $(".currentDropTarget").css("borderLeftStyle") == "solid" ? "before" : "after"), source: $(ui.helper).children("img") }); } |