From: Sarven Capadisli Date: Sun, 27 Sep 2009 11:31:34 +0000 (+0000) Subject: jQuery.prepend takes a single param X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7d843b11228bb55750177ca7809d5f067d52dc20;p=quix0rs-gnu-social.git jQuery.prepend takes a single param --- diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index a31565177f..765710bfe2 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -27,7 +27,7 @@ RealtimeUpdate = { } var noticeItem = RealtimeUpdate.makeNoticeItem(data); - $("#notices_primary .notices").prepend(noticeItem, true); + $("#notices_primary .notices").prepend(noticeItem); $("#notices_primary .notice:first").css({display:"none"}); $("#notices_primary .notice:first").fadeIn(1000); NoticeReply();