From f88d55fa59ba21d4f96a8ecc301ae46aa7ad2dfa Mon Sep 17 00:00:00 2001 From: James Campos Date: Mon, 25 Apr 2011 00:03:27 -0700 Subject: [PATCH] don't thread image controls --- 4chan_x.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.js b/4chan_x.js index 63b3e35b3..fadf5d40c 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -1141,7 +1141,7 @@ threadHiding = { init: function() { var a, hiddenThreads, node, op, thread, _i, _len, _ref, _results; - node = $('form[name=delform] > *'); + node = $('form[name=delform] > *:not([id])'); threadHiding.thread(node); hiddenThreads = $.getValue("hiddenThread/" + g.BOARD + "/", {}); _ref = $$('div.thread'); diff --git a/script.coffee b/script.coffee index 40339f962..09f67e95c 100644 --- a/script.coffee +++ b/script.coffee @@ -877,7 +877,7 @@ qr = threadHiding = init: -> - node = $ 'form[name=delform] > *' + node = $ 'form[name=delform] > *:not([id])' threadHiding.thread node hiddenThreads = $.getValue "hiddenThread/#{g.BOARD}/", {}