don't thread image controls

This commit is contained in:
James Campos 2011-04-25 00:03:27 -07:00
parent c1b5bdb24b
commit f88d55fa59
2 changed files with 2 additions and 2 deletions

View File

@ -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');

View File

@ -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}/", {}