diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-01 13:43:36 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-01 13:43:36 -0400 |
commit | 67e3bf0f055dd49b2ddf683625baeefee3cb9b09 (patch) | |
tree | 931f2b535bb79b0cf0d9fc8e01d729d0ee77b534 /js/util.js | |
parent | 721ba6c88f3c89c3efcc8e5f0c9169d94911825d (diff) |
remove extra / in attachment code
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/util.js b/js/util.js index 1e6dc7251..d28ab62e0 100644 --- a/js/util.js +++ b/js/util.js @@ -285,10 +285,10 @@ function NoticeAttachments() { }; $('#content .notice a.attachment').click(function() { - $().jOverlay({url: $('address .url')[0].href+'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'}); + $().jOverlay({url: $('address .url')[0].href+'attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'}); return false; }); - + var t; $("body:not(#shownotice) #content .notice a.thumbnail").hover( function() { |