diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-05 09:24:27 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-05 09:24:27 -0700 |
commit | 9f396178cedc96abb282e72ff0e843e255c8225a (patch) | |
tree | 48c514bea04f4c5f07599086a8b79d99fcb70230 /lib/gallery.panel.js | |
parent | 397468c47b8fc3fefeb54ff19a73980ed1dd8c20 (diff) |
Revert "Allow a theme to override the page refresh mechanism. Create a new"
This reverts commit 1f014aae6c16bbda62d8f5937180f11ccb0eb1b1.
Diffstat (limited to 'lib/gallery.panel.js')
-rw-r--r-- | lib/gallery.panel.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gallery.panel.js b/lib/gallery.panel.js index 26be11ad..022e4878 100644 --- a/lib/gallery.panel.js +++ b/lib/gallery.panel.js @@ -40,9 +40,9 @@ function togglePanel(element, on_success) { if (on_success) { on_success(); } else if (data.location) { - $.gallery_location(data.location); + window.location = data.location; } else { - $.gallery_reload(); + window.location.reload(); } } } |