summaryrefslogtreecommitdiff
path: root/js/util.js
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-11 10:12:34 -0500
committerEvan Prodromou <evan@status.net>2009-12-11 10:12:34 -0500
commit1204178660d34088f49bdaeb21189651c48c591e (patch)
tree814053e697c8fb416dc310bf15510963f3a3ef49 /js/util.js
parente75444b30d9c38f40f7a15422b46b5caae6bb16a (diff)
rename forward form to repeat form in JS
Diffstat (limited to 'js/util.js')
-rw-r--r--js/util.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/util.js b/js/util.js
index 71514324b..f60b5d313 100644
--- a/js/util.js
+++ b/js/util.js
@@ -315,8 +315,8 @@ var SN = { // StatusNet
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
},
- NoticeForward: function() {
- $('.form_forward').each(function() { SN.U.FormXHR($(this)); });
+ NoticeRepeat: function() {
+ $('.form_repeat').each(function() { SN.U.FormXHR($(this)); });
},
NoticeAttachments: function() {
@@ -452,7 +452,7 @@ var SN = { // StatusNet
Notices: function() {
if ($('body.user_in').length > 0) {
SN.U.NoticeFavor();
- SN.U.NoticeForward();
+ SN.U.NoticeRepeat();
SN.U.NoticeReply();
}