From: Sarven Capadisli Date: Fri, 30 Oct 2009 15:41:52 +0000 (+0000) Subject: Remove attachment view after XHR notice submit X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=873ecb81e8e147ccf05c351de795798ec4d3ed58;p=quix0rs-gnu-social.git Remove attachment view after XHR notice submit --- diff --git a/js/util.js b/js/util.js index 3d33b18f9b..638f8e6d13 100644 --- a/js/util.js +++ b/js/util.js @@ -223,7 +223,7 @@ var SN = { // StatusNet } else { notice = $('li', data)[0]; - if ($('#'+notice.id).length === 0) { + if ($('#'+notice.id).length == 0) { var notice_irt_value = $('#'+SN.C.S.NoticeInReplyTo).val(); var notice_irt = '#notices_primary #notice-'+notice_irt_value; if($('body')[0].id == 'conversation') { @@ -244,6 +244,7 @@ var SN = { // StatusNet $('#'+SN.C.S.NoticeDataText).val(''); $('#'+SN.C.S.NoticeDataAttach).val(''); $('#'+SN.C.S.NoticeInReplyTo).val(''); + $('#'+SN.C.S.NoticeDataAttachSelected).remove(); SN.U.Counter(); } },