diff options
author | Evan Prodromou <evan@status.net> | 2009-12-10 14:41:18 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-10 14:41:18 -0500 |
commit | 038fbddd02d2f144936357ed2ed40c09b1441c6b (patch) | |
tree | 3c77618934e55958f8175c44daf2105796438725 | |
parent | 433106dfc512605f93a1354034c23452fbb3956b (diff) |
remove NoticeForward from util.js
-rw-r--r-- | js/util.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/js/util.js b/js/util.js index 71514324b..336cd8cfe 100644 --- a/js/util.js +++ b/js/util.js @@ -315,10 +315,6 @@ 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')); @@ -452,7 +448,6 @@ var SN = { // StatusNet Notices: function() { if ($('body.user_in').length > 0) { SN.U.NoticeFavor(); - SN.U.NoticeForward(); SN.U.NoticeReply(); } |