diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-05 08:20:07 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-05 08:20:07 +0000 |
commit | 06b4145b7650a883873105164ecc7273052ab6d4 (patch) | |
tree | 88bf394961fb1a307fb91ccba82a57170ce013f5 /core/js | |
parent | 2dc436beea943092f9ede6b0131c27c9f7042011 (diff) |
Quick edit dialogs should stay on the same page and trigger a reload.
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 7d572174..e55c9218 100644 --- a/core/js/quick.js +++ b/core/js/quick.js @@ -31,7 +31,7 @@ var show_quick = function() { var quick_do = function(quick, pane, img) { img.css("opacity", "0.2"); if (pane.hasClass("gDialogLink")) { - openDialog(pane); + openDialog(pane, function() { window.location.reload(); }); } else { quick.addClass("gLoadingLarge"); $.ajax({ |