summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-11 10:10:53 -0500
committerEvan Prodromou <evan@status.net>2009-12-11 10:10:53 -0500
commitf5bfa11db2df2362ec5f81699b26942d52e9b60b (patch)
tree50adc5eeb3eb3d7b6f4ba8dd9162eff46ac5e616 /js
parenta5724cca4956e3fcfe359bd72b4d874832b31393 (diff)
Revert "remove NoticeForward from util.js"
This reverts commit 038fbddd02d2f144936357ed2ed40c09b1441c6b.
Diffstat (limited to '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..71514324b 100644
--- a/js/util.js
+++ b/js/util.js
@@ -315,6 +315,10 @@ var SN = { // StatusNet
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
},
+ NoticeForward: function() {
+ $('.form_forward').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.NoticeForward();
SN.U.NoticeReply();
}