summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-12 16:18:55 -0500
committerEvan Prodromou <evan@status.net>2009-12-12 16:18:55 -0500
commita5a89f50b8e3f9b99d8ea3a7eff378637b149c7f (patch)
tree771b39f50b6272f62d08902d25b9fb54eb11937d /js/util.js
parentcc063aedccd614d6e486d88921c7752ec5750551 (diff)
parent1ec54d3433a79f56c14c0a99114bb1e607348899 (diff)
Merge branch 'forward' into 0.9.x
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/util.js b/js/util.js
index 336cd8cfe..f60b5d313 100644
--- a/js/util.js
+++ b/js/util.js
@@ -315,6 +315,10 @@ var SN = { // StatusNet
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
},
+ NoticeRepeat: function() {
+ $('.form_repeat').each(function() { SN.U.FormXHR($(this)); });
+ },
+
NoticeAttachments: function() {
$('.notice a.attachment').each(function() {
SN.U.NoticeWithAttachment($(this).closest('.notice'));
@@ -448,6 +452,7 @@ var SN = { // StatusNet
Notices: function() {
if ($('body.user_in').length > 0) {
SN.U.NoticeFavor();
+ SN.U.NoticeRepeat();
SN.U.NoticeReply();
}