Revert "I like that better"
This reverts commit 2ba7ae5d280c7f5c8c0ef803f99fcdd0606e7270.
This commit is contained in:
parent
e1c9330250
commit
b3f5011bcf
@ -6807,6 +6807,10 @@
|
|||||||
if (!(Conf['Persistent QR'] || QR.cooldown.auto)) {
|
if (!(Conf['Persistent QR'] || QR.cooldown.auto)) {
|
||||||
QR.close();
|
QR.close();
|
||||||
} else {
|
} else {
|
||||||
|
if (QR.posts.length > 1) {
|
||||||
|
QR.captcha.setup();
|
||||||
|
QR.captcha.afterSetup();
|
||||||
|
}
|
||||||
post.rm();
|
post.rm();
|
||||||
}
|
}
|
||||||
QR.cooldown.set({
|
QR.cooldown.set({
|
||||||
@ -7248,9 +7252,6 @@
|
|||||||
$.rmClass(QR.nodes.el, 'dump');
|
$.rmClass(QR.nodes.el, 'dump');
|
||||||
} else if (this === QR.selected) {
|
} else if (this === QR.selected) {
|
||||||
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
||||||
if (QR.captcha.isEnabled) {
|
|
||||||
QR.captcha.setup();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
QR.posts.splice(index, 1);
|
QR.posts.splice(index, 1);
|
||||||
return QR.status();
|
return QR.status();
|
||||||
|
|||||||
@ -6852,6 +6852,10 @@
|
|||||||
if (!(Conf['Persistent QR'] || QR.cooldown.auto)) {
|
if (!(Conf['Persistent QR'] || QR.cooldown.auto)) {
|
||||||
QR.close();
|
QR.close();
|
||||||
} else {
|
} else {
|
||||||
|
if (QR.posts.length > 1) {
|
||||||
|
QR.captcha.setup();
|
||||||
|
QR.captcha.afterSetup();
|
||||||
|
}
|
||||||
post.rm();
|
post.rm();
|
||||||
}
|
}
|
||||||
QR.cooldown.set({
|
QR.cooldown.set({
|
||||||
@ -7287,9 +7291,6 @@
|
|||||||
$.rmClass(QR.nodes.el, 'dump');
|
$.rmClass(QR.nodes.el, 'dump');
|
||||||
} else if (this === QR.selected) {
|
} else if (this === QR.selected) {
|
||||||
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
||||||
if (QR.captcha.isEnabled) {
|
|
||||||
QR.captcha.setup();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
QR.posts.splice(index, 1);
|
QR.posts.splice(index, 1);
|
||||||
return QR.status();
|
return QR.status();
|
||||||
|
|||||||
@ -793,6 +793,9 @@ QR =
|
|||||||
unless Conf['Persistent QR'] or QR.cooldown.auto
|
unless Conf['Persistent QR'] or QR.cooldown.auto
|
||||||
QR.close()
|
QR.close()
|
||||||
else
|
else
|
||||||
|
if QR.posts.length > 1
|
||||||
|
QR.captcha.setup()
|
||||||
|
QR.captcha.afterSetup()
|
||||||
post.rm()
|
post.rm()
|
||||||
|
|
||||||
QR.cooldown.set {req, post, isReply, threadID}
|
QR.cooldown.set {req, post, isReply, threadID}
|
||||||
|
|||||||
@ -80,8 +80,6 @@ QR.post = class
|
|||||||
$.rmClass QR.nodes.el, 'dump'
|
$.rmClass QR.nodes.el, 'dump'
|
||||||
else if @ is QR.selected
|
else if @ is QR.selected
|
||||||
(QR.posts[index-1] or QR.posts[index+1]).select()
|
(QR.posts[index-1] or QR.posts[index+1]).select()
|
||||||
if QR.captcha.isEnabled
|
|
||||||
QR.captcha.setup()
|
|
||||||
QR.posts.splice index, 1
|
QR.posts.splice index, 1
|
||||||
QR.status()
|
QR.status()
|
||||||
delete: ->
|
delete: ->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user