diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-29 19:22:54 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-29 19:22:54 +0000 |
commit | c239ffb6e01958a345800651309d3afa4ffda22f (patch) | |
tree | 49caebe36554a6c8faf4954e7fb8a086eb737681 | |
parent | 0d6a1b6c926f2401b9b43020cc501de16277264c (diff) |
Call NoticeWithAttachment instead of NoticeAttachments after XHR
notice post
-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 e064c173b..633af6dc8 100644 --- a/js/util.js +++ b/js/util.js @@ -233,7 +233,7 @@ var SN = { // StatusNet } $('#'+notice.id).css({display:'none'}); $('#'+notice.id).fadeIn(2500); - SN.U.NoticeAttachments(); + SN.U.NoticeWithAttachment($('#'+notice.id)); SN.U.NoticeReplyTo($('#'+notice.id)); SN.U.FormXHR($('#'+notice.id+' .form_favor')); } |