Fix for inline reply placeholders: only remove the one we're clicking in, not all of them!

This commit is contained in:
Brion Vibber 2011-03-10 16:08:28 -08:00
parent 6b5b6d072b
commit acca8a24b4
2 changed files with 2 additions and 2 deletions

View File

@ -599,7 +599,7 @@ var SN = { // StatusNet
nextStep();
} else {
// Remove placeholder if any
$('li.notice-reply-placeholder').remove();
list.find('li.notice-reply-placeholder').remove();
// Create the reply form entry at the end
var replyItem = $('li.notice-reply', list);

2
js/util.min.js vendored

File diff suppressed because one or more lines are too long