diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-05 10:26:11 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-05 10:26:11 -0700 |
commit | 65c850c393ce6159289e3fd05056c33e7d62e961 (patch) | |
tree | de41b6924d45aaf6186f76bd2ee0dbdbb71aa546 /modules/organize/js/organize_init.js | |
parent | 7b1cca168cb9b29fcccdcdce9e32efb190e4575e (diff) |
Revert "Revert "Checkpoint the organize module rewrite. At this point, it doesn't really do""
This reverts commit 397468c47b8fc3fefeb54ff19a73980ed1dd8c20.
Diffstat (limited to 'modules/organize/js/organize_init.js')
-rw-r--r-- | modules/organize/js/organize_init.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/modules/organize/js/organize_init.js b/modules/organize/js/organize_init.js deleted file mode 100644 index ed036fdb..00000000 --- a/modules/organize/js/organize_init.js +++ /dev/null @@ -1,29 +0,0 @@ -$("document").ready(function() { - $("#gOrganizeLink").click(function(event) { - event.preventDefault(); - var href = event.target.href; - - $("body").append('<div id="gDialog"></div>'); - - $("#gDialog").dialog({ - autoOpen: false, - autoResize: false, - modal: true, - resizable: false, - close: function () { - $("#gDialog").trigger("organize_close"); - $("#gDialog").dialog("destroy").remove(); - }, - zIndex: 75 - }); - - //showLoading("#gDialog"); - - $.get(href, function(data) { - $("#gDialog").html(data); - }); - return false; - }); -}); - - |