diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-06 04:32:15 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-06 04:32:15 +0000 |
commit | 712a97addd50f61d1a3cbd3cd5e7841a07d740d9 (patch) | |
tree | af19d435d950ec518ea25aefefeb802be1ebbbd2 /core/js | |
parent | 2b92fef5ab409322f91714f7ba4babbebde96ec6 (diff) |
Don't make the overlay opaque when we're doing a dialog-based edit.
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/quick.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/quick.js b/core/js/quick.js index e55c9218..b1b43b73 100644 --- a/core/js/quick.js +++ b/core/js/quick.js @@ -29,10 +29,10 @@ var show_quick = function() { }; var quick_do = function(quick, pane, img) { - img.css("opacity", "0.2"); if (pane.hasClass("gDialogLink")) { openDialog(pane, function() { window.location.reload(); }); } else { + img.css("opacity", "0.2"); quick.addClass("gLoadingLarge"); $.ajax({ type: "GET", |