Use ReplyHiding when Recursively Filtering. This will add stubs when the option is enabled.

This commit is contained in:
Nicolas Stepien 2012-03-11 14:52:59 +01:00
parent 9ce3679a2e
commit b40a79a9f4
2 changed files with 2 additions and 2 deletions

View File

@ -709,7 +709,7 @@
quote = _ref[_i];
if ((el = $.id(quote.hash.slice(1))) && el.parentNode.parentNode.parentNode.hidden) {
$.addClass(quote, 'filtered');
if (conf['Recursive Filtering']) post.root.hidden = true;
if (conf['Recursive Filtering']) ReplyHiding.hide(post.root);
}
}
}

View File

@ -617,7 +617,7 @@ StrikethroughQuotes =
for quote in post.quotes
if (el = $.id quote.hash[1..]) and el.parentNode.parentNode.parentNode.hidden
$.addClass quote, 'filtered'
post.root.hidden = true if conf['Recursive Filtering']
ReplyHiding.hide post.root if conf['Recursive Filtering']
return
ExpandComment =