summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-12-02 23:16:27 +0100
committerSarven Capadisli <csarven@status.net>2009-12-02 23:16:27 +0100
commitd3189763422a87f9f977646ad57e7d4a2ea29026 (patch)
tree80419dc953c4cd951adedb8c487cde59f13f14ce /js
parent7b550f386a8a3f38ced8ee587d7ae1c997e97906 (diff)
Clear/reset the XHR notice form on pages where there is no timeline
Diffstat (limited to 'js')
-rw-r--r--js/util.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/util.js b/js/util.js
index 3c9c3986a..66f5f9f44 100644
--- a/js/util.js
+++ b/js/util.js
@@ -243,12 +243,12 @@ var SN = { // StatusNet
SN.U.FormXHR($('#'+notice.id+' .form_favor'));
}
}
- $('#'+form_id+' #'+SN.C.S.NoticeDataText).val('');
- $('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val('');
- $('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val('');
- $('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
- SN.U.FormNoticeEnhancements($('#'+form_id));
}
+ $('#'+form_id+' #'+SN.C.S.NoticeDataText).val('');
+ $('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val('');
+ $('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val('');
+ $('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
+ SN.U.FormNoticeEnhancements($('#'+form_id));
}
},
complete: function(xhr, textStatus) {