diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-01 23:18:35 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-07-01 23:18:35 +0000 |
commit | e39b2378beabff73ec2bcfc602d6811d7787523d (patch) | |
tree | 1d9fdb722cf11a83c862757436d1d883e8ef755e /js | |
parent | 92e30b438e1601476e20f2ea40876dd3fc32f6ca (diff) |
Removed extra slash
Diffstat (limited to 'js')
-rw-r--r-- | js/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/util.js b/js/util.js index 92fc3a3da..638104c1c 100644 --- a/js/util.js +++ b/js/util.js @@ -298,7 +298,7 @@ function NoticeAttachments() { if (anchor.children('img').length == 0) { t = setTimeout(function() { - $.get($('address .url')[0].href+'/attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) { + $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) { anchor.append(data); }); }, 500); |