summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-01 16:25:38 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-01 16:25:38 -0700
commit6bc37a3254f814b6bece4a62fed4fc27f785f0bb (patch)
tree37792ec16e9d529266e1884d11d1030cfd916d66 /js/util.js
parent0e78e1cc52674e94361aa3351bdad54894b17eb2 (diff)
parente39b2378beabff73ec2bcfc602d6811d7787523d (diff)
Merge branch '0.8.x' of git@gitorious.org:laconica/dev into 0.8.x
* '0.8.x' of git@gitorious.org:laconica/dev: Removed extra slash Killed the FB Connect profile-pic bounce in all browsers
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js2
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);