diff --git a/4chan_x.user.js b/4chan_x.user.js index e286d23a2..e8c2161fd 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -101,7 +101,6 @@ 'Auto Watch Reply': [false, 'Automatically watch threads that you reply to'] }, Posting: { - 'Auto Noko': [true, 'Always redirect to your post'], 'Cooldown': [true, 'Prevent `flood detected` errors'], 'Quick Reply': [true, 'Reply without leaving the page'], 'Persistent QR': [false, 'Quick reply won\'t disappear after posting. Only in replies.'], @@ -3063,9 +3062,6 @@ } $.addStyle(Main.css); threading.init(); - if (g.REPLY && (id = location.hash.slice(1)) && /\d/.test(id[0]) && !$.id(id)) { - scrollTo(0, d.body.scrollHeight); - } if (conf['Filter']) { filter.init(); } diff --git a/script.coffee b/script.coffee index 44ddf394c..9a6db362c 100644 --- a/script.coffee +++ b/script.coffee @@ -32,7 +32,6 @@ config = 'Auto Watch': [true, 'Automatically watch threads that you start'] 'Auto Watch Reply': [false, 'Automatically watch threads that you reply to'] Posting: - 'Auto Noko': [true, 'Always redirect to your post'] 'Cooldown': [true, 'Prevent `flood detected` errors'] 'Quick Reply': [true, 'Reply without leaving the page'] 'Persistent QR': [false, 'Quick reply won\'t disappear after posting. Only in replies.'] @@ -2277,11 +2276,6 @@ Main = #major features threading.init() - # scroll to bottom if post isn't found - # thumbnail generation takes time - if g.REPLY and (id = location.hash[1..]) and /\d/.test(id[0]) and !$.id(id) - scrollTo 0, d.body.scrollHeight - if conf['Filter'] filter.init()