Fix #194
This commit is contained in:
parent
c6d5c0c463
commit
6cab2cfca7
@ -1,3 +1,6 @@
|
||||
**MayhemYDG**:
|
||||
- Minor Chrome 30 fix
|
||||
|
||||
### v1.2.40
|
||||
*2013-09-22*
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* 4chan X - Version 1.2.40 - 2013-09-22
|
||||
* 4chan X - Version 1.2.40 - 2013-10-03
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.2.40 - 2013-09-22
|
||||
* 4chan X - Version 1.2.40 - 2013-10-03
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||
@ -6188,6 +6188,10 @@
|
||||
threadID: threadID,
|
||||
postID: postID
|
||||
});
|
||||
$.event('QRPostSuccessful_', {
|
||||
threadID: threadID,
|
||||
postID: postID
|
||||
});
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
if (QR.cooldown.auto && QR.captcha.isEnabled && (captchasCount = QR.captcha.captchas.length) < 3 && captchasCount < postsCount) {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// Generated by CoffeeScript
|
||||
/*
|
||||
* 4chan X - Version 1.2.40 - 2013-09-22
|
||||
* 4chan X - Version 1.2.40 - 2013-10-03
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
|
||||
@ -6175,6 +6175,10 @@
|
||||
threadID: threadID,
|
||||
postID: postID
|
||||
});
|
||||
$.event('QRPostSuccessful_', {
|
||||
threadID: threadID,
|
||||
postID: postID
|
||||
});
|
||||
postsCount = QR.posts.length - 1;
|
||||
QR.cooldown.auto = postsCount && isReply;
|
||||
if (QR.cooldown.auto && QR.captcha.isEnabled && (captchasCount = QR.captcha.captchas.length) < 3 && captchasCount < postsCount) {
|
||||
|
||||
@ -1216,12 +1216,15 @@ QR =
|
||||
|
||||
ThreadUpdater.postID = postID
|
||||
|
||||
|
||||
|
||||
# Post/upload confirmed as successful.
|
||||
$.event 'QRPostSuccessful', {
|
||||
board: g.BOARD
|
||||
threadID
|
||||
postID
|
||||
}
|
||||
$.event 'QRPostSuccessful_', {threadID, postID}
|
||||
|
||||
# Enable auto-posting if we have stuff left to post, disable it otherwise.
|
||||
postsCount = QR.posts.length - 1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user