diff --git a/appchan-x.user.js b/appchan-x.user.js index 72389fb2a..fce475e6e 100644 --- a/appchan-x.user.js +++ b/appchan-x.user.js @@ -6259,7 +6259,7 @@ if (!Conf['Reply Hiding']) { return; } - return $.add($('.postInfo', this.nodes.post), ReplyHiding.makeButton(this, 'hide')); + return $.add($('.postInfo', this.nodes.post), PostHiding.makeButton(this, 'hide')); }, menu: { init: function() { diff --git a/src/features.coffee b/src/features.coffee index acd3c183f..40679807d 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -1240,7 +1240,7 @@ PostHiding = Recursive.apply PostHiding.hide, @, data.makeStub, true Recursive.add PostHiding.hide, @, data.makeStub, true return unless Conf['Reply Hiding'] - $.add $('.postInfo', @nodes.post), ReplyHiding.makeButton @, 'hide' + $.add $('.postInfo', @nodes.post), PostHiding.makeButton @, 'hide' menu: init: ->