diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-28 11:42:54 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-28 11:42:54 -0700 |
commit | 16fc4465d0e773239bfe11681f7303b46e6419f0 (patch) | |
tree | fd67e408d9b3a7905553ce220ef948124d29c069 /modules/organize/js/organize_init.js | |
parent | c0c65c6fcc971b1ea9c0afb75854aec502591d56 (diff) | |
parent | 430b57578b048366f054743e47de1b66cebb574e (diff) |
Merge branch 'master' of git@github.com:talmdal/gallery3
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 30bc78dd..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 - }); - - //$.gallery_show_loading("#gDialog"); - - $.get(href, function(data) { - $("#gDialog").html(data); - }); - return false; - }); -}); - - |