]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Revert "remove NoticeForward from util.js"
authorEvan Prodromou <evan@status.net>
Fri, 11 Dec 2009 15:10:53 +0000 (10:10 -0500)
committerEvan Prodromou <evan@status.net>
Fri, 11 Dec 2009 15:10:53 +0000 (10:10 -0500)
This reverts commit 038fbddd02d2f144936357ed2ed40c09b1441c6b.

js/util.js

index 336cd8cfe5609c40a5fd06c113f6f954fbd2de85..71514324b1462f518fb5715ee5cc90d2696c0b44 100644 (file)
@@ -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();
             }