Fix regression in inline replies to newly added messages (regression from my fixes w/ the realtime stuff)

This commit is contained in:
Brion Vibber 2011-04-15 15:03:20 -07:00
parent aad3372db9
commit 79190c87b2
2 changed files with 8 additions and 3 deletions

View File

@ -644,8 +644,8 @@ var SN = { // StatusNet
// and we'll add on the end of it. Will add if needed.
list = $('ul.threaded-replies', notice);
if (list.length == 0) {
list = $('<ul class="notices threaded-replies xoxo"></ul>');
notice.append(list);
SN.U.NoticeInlineReplyPlaceholder(notice);
list = $('ul.threaded-replies', notice);
}
}
@ -718,6 +718,11 @@ var SN = { // StatusNet
NoticeInlineReplyPlaceholder: function(notice) {
var list = notice.find('ul.threaded-replies');
if (list.length == 0) {
list = $('<ul class="notices threaded-replies xoxo"></ul>');
notice.append(list);
list = notice.find('ul.threaded-replies');
}
var placeholder = $('<li class="notice-reply-placeholder">' +
'<input class="placeholder">' +
'</li>');

2
js/util.min.js vendored

File diff suppressed because one or more lines are too long