Remove legacy normal post form code

This commit is contained in:
Nicolas Stepien 2011-09-27 02:51:24 +02:00
parent 22dd5ce783
commit d4fbe602d9
2 changed files with 0 additions and 10 deletions

View File

@ -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();
}

View File

@ -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()