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

2
js/util.min.js vendored

File diff suppressed because one or more lines are too long