Revert "I like that better"

This reverts commit 2ba7ae5d280c7f5c8c0ef803f99fcdd0606e7270.
This commit is contained in:
ccd0 2014-04-06 01:05:37 -07:00
parent e1c9330250
commit b3f5011bcf
4 changed files with 11 additions and 8 deletions

View File

@ -6807,6 +6807,10 @@
if (!(Conf['Persistent QR'] || QR.cooldown.auto)) {
QR.close();
} else {
if (QR.posts.length > 1) {
QR.captcha.setup();
QR.captcha.afterSetup();
}
post.rm();
}
QR.cooldown.set({
@ -7248,9 +7252,6 @@
$.rmClass(QR.nodes.el, 'dump');
} else if (this === QR.selected) {
(QR.posts[index - 1] || QR.posts[index + 1]).select();
if (QR.captcha.isEnabled) {
QR.captcha.setup();
}
}
QR.posts.splice(index, 1);
return QR.status();

View File

@ -6852,6 +6852,10 @@
if (!(Conf['Persistent QR'] || QR.cooldown.auto)) {
QR.close();
} else {
if (QR.posts.length > 1) {
QR.captcha.setup();
QR.captcha.afterSetup();
}
post.rm();
}
QR.cooldown.set({
@ -7287,9 +7291,6 @@
$.rmClass(QR.nodes.el, 'dump');
} else if (this === QR.selected) {
(QR.posts[index - 1] || QR.posts[index + 1]).select();
if (QR.captcha.isEnabled) {
QR.captcha.setup();
}
}
QR.posts.splice(index, 1);
return QR.status();

View File

@ -793,6 +793,9 @@ QR =
unless Conf['Persistent QR'] or QR.cooldown.auto
QR.close()
else
if QR.posts.length > 1
QR.captcha.setup()
QR.captcha.afterSetup()
post.rm()
QR.cooldown.set {req, post, isReply, threadID}

View File

@ -80,8 +80,6 @@ QR.post = class
$.rmClass QR.nodes.el, 'dump'
else if @ is QR.selected
(QR.posts[index-1] or QR.posts[index+1]).select()
if QR.captcha.isEnabled
QR.captcha.setup()
QR.posts.splice index, 1
QR.status()
delete: ->