forked from GNUsocial/gnu-social
Merge branch '0.8.x'
This commit is contained in:
commit
fb646654a2
@ -34,6 +34,8 @@ RealtimeUpdate = {
|
||||
_favorurl: '',
|
||||
_deleteurl: '',
|
||||
_updatecounter: 0,
|
||||
_updatedelay: 500,
|
||||
_maxnotices: 50,
|
||||
|
||||
init: function(userid, replyurl, favorurl, deleteurl)
|
||||
{
|
||||
@ -76,11 +78,20 @@ RealtimeUpdate = {
|
||||
$("#notices_primary .notices").prepend(noticeItem);
|
||||
$("#notices_primary .notice:first").css({display:"none"});
|
||||
$("#notices_primary .notice:first").fadeIn(1000);
|
||||
|
||||
if ($('#notices_primary .notice').length > RealtimeUpdate._maxnotices) {
|
||||
$("#notices_primary .notice:last .form_disfavor").unbind('submit');
|
||||
$("#notices_primary .notice:last .form_favor").unbind('submit');
|
||||
$("#notices_primary .notice:last #notice_in-reply-to").unbind('click');
|
||||
$("#notices_primary .notice:last").remove();
|
||||
}
|
||||
|
||||
NoticeFavors();
|
||||
NoticeReply();
|
||||
|
||||
RealtimeUpdate._updatecounter += 1;
|
||||
document.title = '('+RealtimeUpdate._updatecounter+') ' + DT;
|
||||
}, 500);
|
||||
}, RealtimeUpdate._updatedelay);
|
||||
},
|
||||
|
||||
makeNoticeItem: function(data)
|
||||
|
Loading…
Reference in New Issue
Block a user