diff --git a/4chan_x.user.js b/4chan_x.user.js index 39d3723ff..e8f132f10 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4221,7 +4221,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 b65714749..5d271b7ca 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- noface + Fix Anonymize not working on hovered posts. - Mayhem Added catalog support: Sync thread hiding between index and catalog. diff --git a/script.coffee b/script.coffee index 7633d8480..d6f220bed 100644 --- a/script.coffee +++ b/script.coffee @@ -3464,6 +3464,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