From 4da7308206d4d5293b9c8091bc44ca27983efbf3 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 12 Apr 2012 09:45:14 +0200 Subject: [PATCH] Close #382. --- 4chan_x.user.js | 1 + changelog | 2 ++ script.coffee | 1 + 3 files changed, 4 insertions(+) diff --git a/4chan_x.user.js b/4chan_x.user.js index 8a31910f4..b3319ad66 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3469,6 +3469,7 @@ AutoGif = { init: function() { + if (g.BOARD === 'gif') return; return Main.callbacks.push(this.node); }, node: function(post) { diff --git a/changelog b/changelog index fd05e3540..f8413bbd0 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,6 @@ master +- Mayhem + Auto-GIF will not run in /gif/. 2.29.3 - Mayhem diff --git a/script.coffee b/script.coffee index f9619dd90..8e930ed96 100644 --- a/script.coffee +++ b/script.coffee @@ -2905,6 +2905,7 @@ ImageHover = AutoGif = init: -> + return if g.BOARD is 'gif' Main.callbacks.push @node node: (post) -> return if post.root.hidden or not post.img