From c0a70c40fdc884e097fc9827f8d70b42214cce52 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Fri, 6 May 2011 01:24:26 +0200 Subject: [PATCH] Fix Auto-Watch. --- 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 8806d04cc..15204e748 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -2188,7 +2188,7 @@ unread.init(); } if ($.config('Auto Watch') && location.hash === '#watch') { - watcher.watch(); + watcher.watch($('body > form'), $('form > input[value=delete]').name); } } else { threading.init(); diff --git a/script.coffee b/script.coffee index 227102600..7d33118a9 100644 --- a/script.coffee +++ b/script.coffee @@ -1699,7 +1699,7 @@ main = unread.init() if $.config('Auto Watch') and location.hash is '#watch' - watcher.watch() + watcher.watch($('body > form'), $('form > input[value=delete]').name) else #not reply threading.init()