Fix Recursive hiding

This commit is contained in:
Zixaphir 2014-03-09 15:03:21 -07:00
parent 435b8d91e5
commit 865c5331ba
3 changed files with 3 additions and 3 deletions

View File

@ -5166,7 +5166,7 @@
fullID = post.fullID;
return g.posts.forEach(function(post) {
if (__indexOf.call(post.quotes, fullID) >= 0) {
return recursive.apply(null, [post].concat(__slice.call(args)));
return post[recursive].apply(post, args);
}
});
}

View File

@ -5218,7 +5218,7 @@
fullID = post.fullID;
return g.posts.forEach(function(post) {
if (__indexOf.call(post.quotes, fullID) >= 0) {
return recursive.apply(null, [post].concat(__slice.call(args)));
return post[recursive].apply(post, args);
}
});
}

View File

@ -30,4 +30,4 @@ Recursive =
{fullID} = post
g.posts.forEach (post) ->
if fullID in post.quotes
recursive post, args...
post[recursive] args...