diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-27 16:15:01 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-27 16:15:01 -0700 |
commit | 8d2cd12c58508c58520d4df2875a3f7974343d8f (patch) | |
tree | bc2c99a5f493d365d0306c855878bad319cc664f /modules/organize/js/organize_init.js | |
parent | e0e430bd84d8c82eb425c0bc828dae2b9c0d86be (diff) | |
parent | bfc64685e4ae4bbd2c0308e9520194215ab51469 (diff) |
Merge branch 'master' of git@github.com:talmdal/gallery3 into talmdal_branch
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; - }); -}); - - |