diff --git a/4chan_x.user.js b/4chan_x.user.js index 2f227f015..43c2c32b5 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4198,7 +4198,10 @@ FileInfo.node(post); } if (Conf['Resurrect Quotes']) { - return Quotify.node(post); + Quotify.node(post); + } + if (Conf['Anonymize']) { + return Anonymize.node(post); } }); $.on(this, 'mousemove', UI.hover); diff --git a/changelog b/changelog index c6d68cd70..8d253f276 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- noface + Fix Anonymize not working on hovered posts. 2.36.3 - Mayhem diff --git a/script.coffee b/script.coffee index 39b22d211..52d98f3af 100644 --- a/script.coffee +++ b/script.coffee @@ -3448,6 +3448,8 @@ QuotePreview = FileInfo.node post if Conf['Resurrect Quotes'] Quotify.node post + if Conf['Anonymize'] + Anonymize.node post $.on @, 'mousemove', UI.hover $.on @, 'mouseout click', QuotePreview.mouseout