diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-28 11:46:28 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-28 11:46:28 -0800 |
commit | b8fb891828effa441a37efdd5babe03a5c7f5efe (patch) | |
tree | 41c0a1ee951d587c8dc21c2278f9632ca3ccbef4 | |
parent | 1d4ed5a32c7a2364e2c512ff39d4b9683f8fd6ef (diff) |
Make the return button work in chrome, FF, IE, safari and opera.
-rw-r--r-- | modules/gallery/views/user_profile.html.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gallery/views/user_profile.html.php b/modules/gallery/views/user_profile.html.php index 7dc9d13e..f35f8c3f 100644 --- a/modules/gallery/views/user_profile.html.php +++ b/modules/gallery/views/user_profile.html.php @@ -26,6 +26,7 @@ $(document).ready(function() { $("#g-profile-return").click(function(event) { history.go(-1); + return false; }) }); </script> |