add cooldown timer
This commit is contained in:
parent
a37143615d
commit
1d644c8424
@ -453,6 +453,15 @@ close = ->
|
|||||||
div = this.parentNode.parentNode
|
div = this.parentNode.parentNode
|
||||||
remove div
|
remove div
|
||||||
|
|
||||||
|
cooldown = ->
|
||||||
|
submit = $ '#qr input[type=submit]'
|
||||||
|
seconds = parseInt submit.value
|
||||||
|
if seconds == 0
|
||||||
|
submit.disabled = false
|
||||||
|
submit.value = 'Submit'
|
||||||
|
else
|
||||||
|
submit.value = seconds - 1
|
||||||
|
window.setTimeout cooldown, 1000
|
||||||
|
|
||||||
iframeLoad = ->
|
iframeLoad = ->
|
||||||
if iframeLoop = !iframeLoop
|
if iframeLoop = !iframeLoop
|
||||||
@ -469,6 +478,10 @@ iframeLoad = ->
|
|||||||
else if REPLY and getConfig 'Persistent QR'
|
else if REPLY and getConfig 'Persistent QR'
|
||||||
$('textarea', qr).value = ''
|
$('textarea', qr).value = ''
|
||||||
$('input[name=recaptcha_response_field]', qr).value = ''
|
$('input[name=recaptcha_response_field]', qr).value = ''
|
||||||
|
submit = $('input[type=submit]', qr)
|
||||||
|
submit.value = 30
|
||||||
|
submit.disabled = true
|
||||||
|
window.setTimeout cooldown, 1000
|
||||||
else
|
else
|
||||||
remove qr
|
remove qr
|
||||||
|
|
||||||
|
|||||||
30
4chan_x.js
30
4chan_x.js
@ -1,5 +1,5 @@
|
|||||||
(function() {
|
(function() {
|
||||||
var $, $$, AEOS, BOARD, DAY, PAGENUM, REPLY, THREAD_ID, _i, _j, _len, _len2, _ref, _ref2, a, addTo, arr, as, autoWatch, autohide, b, board, callback, callbacks, clearHidden, close, config, cutoff, d, defaultSaucePrefix, delform, down, editSauce, el, expandComment, expandThread, favEmpty, favNormal, favicon, getConfig, getTime, head, hiddenReplies, hiddenThreads, hide, hideReply, hideThread, href, html, i, i1, id, iframe, iframeLoad, iframeLoop, img, inAfter, inBefore, input, inputs, l, l1, lastChecked, magic, n, navbotr, navtopr, nodeInserted, nop, now, omitted, onloadComment, onloadThread, options, optionsClose, parseResponse, pathname, quickReply, r, recaptcha, recaptchaListener, recaptchaReload, redirect, remove, replace, replyNav, report, show, showReply, showThread, slice, span, src, stopPropagation, submit, text, textContent, thread, threadF, threads, tn, up, watch, watchX, watched, watcher, watcherUpdate, x, xhrs;
|
var $, $$, AEOS, BOARD, DAY, PAGENUM, REPLY, THREAD_ID, _, _i, _j, _len, _len2, _ref, _ref2, a, addTo, arr, as, autoWatch, autohide, b, board, callback, callbacks, clearHidden, close, config, cooldown, cutoff, d, defaultSaucePrefix, delform, down, editSauce, el, expandComment, expandThread, favEmpty, favNormal, favicon, getConfig, getTime, head, hiddenReplies, hiddenThreads, hide, hideReply, hideThread, href, html, i, i1, id, iframe, iframeLoad, iframeLoop, img, inAfter, inBefore, input, inputs, l, l1, lastChecked, magic, n, navbotr, navtopr, nodeInserted, now, omitted, onloadComment, onloadThread, options, optionsClose, parseResponse, pathname, quickReply, r, recaptcha, recaptchaListener, recaptchaReload, redirect, remove, replace, replyNav, report, show, showReply, showThread, slice, span, src, stopPropagation, submit, text, textContent, thread, threadF, threads, tn, up, watch, watchX, watched, watcher, watcherUpdate, x, xhrs;
|
||||||
var __slice = Array.prototype.slice, __hasProp = Object.prototype.hasOwnProperty;
|
var __slice = Array.prototype.slice, __hasProp = Object.prototype.hasOwnProperty;
|
||||||
config = {
|
config = {
|
||||||
'Thread Hiding': true,
|
'Thread Hiding': true,
|
||||||
@ -10,11 +10,11 @@
|
|||||||
'Thread Watcher': true,
|
'Thread Watcher': true,
|
||||||
'Thread Expansion': true,
|
'Thread Expansion': true,
|
||||||
'Comment Expansion': true,
|
'Comment Expansion': true,
|
||||||
|
'Quick Report': true,
|
||||||
'Quick Reply': true,
|
'Quick Reply': true,
|
||||||
'Persistent QR': false,
|
'Persistent QR': false,
|
||||||
'Quick Report': true,
|
|
||||||
'Auto Watch': true,
|
|
||||||
'Anonymize': false,
|
'Anonymize': false,
|
||||||
|
'Auto Watch': true,
|
||||||
'404 Redirect': true,
|
'404 Redirect': true,
|
||||||
'Post in Title': true,
|
'Post in Title': true,
|
||||||
'Sauce': true
|
'Sauce': true
|
||||||
@ -244,7 +244,7 @@
|
|||||||
if (getConfig('Auto Watch')) {
|
if (getConfig('Auto Watch')) {
|
||||||
html = $('b').innerHTML;
|
html = $('b').innerHTML;
|
||||||
_ref = html.match(/<!-- thread:(\d+),no:(\d+) -->/);
|
_ref = html.match(/<!-- thread:(\d+),no:(\d+) -->/);
|
||||||
nop = _ref[0];
|
_ = _ref[0];
|
||||||
thread = _ref[1];
|
thread = _ref[1];
|
||||||
id = _ref[2];
|
id = _ref[2];
|
||||||
if (thread === '0') {
|
if (thread === '0') {
|
||||||
@ -516,8 +516,20 @@
|
|||||||
div = this.parentNode.parentNode;
|
div = this.parentNode.parentNode;
|
||||||
return remove(div);
|
return remove(div);
|
||||||
};
|
};
|
||||||
|
cooldown = function() {
|
||||||
|
var seconds, submit;
|
||||||
|
submit = $('#qr input[type=submit]');
|
||||||
|
seconds = parseInt(submit.value);
|
||||||
|
if (seconds === 0) {
|
||||||
|
submit.disabled = false;
|
||||||
|
return (submit.value = 'Submit');
|
||||||
|
} else {
|
||||||
|
submit.value = seconds - 1;
|
||||||
|
return window.setTimeout(cooldown, 1000);
|
||||||
|
}
|
||||||
|
};
|
||||||
iframeLoad = function() {
|
iframeLoad = function() {
|
||||||
var _ref2, _ref3, error, qr, span;
|
var _ref2, _ref3, error, qr, span, submit;
|
||||||
if (iframeLoop = !iframeLoop) {
|
if (iframeLoop = !iframeLoop) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -533,6 +545,10 @@
|
|||||||
} else if (REPLY && getConfig('Persistent QR')) {
|
} else if (REPLY && getConfig('Persistent QR')) {
|
||||||
$('textarea', qr).value = '';
|
$('textarea', qr).value = '';
|
||||||
$('input[name=recaptcha_response_field]', qr).value = '';
|
$('input[name=recaptcha_response_field]', qr).value = '';
|
||||||
|
submit = $('input[type=submit]', qr);
|
||||||
|
submit.value = 30;
|
||||||
|
submit.disabled = true;
|
||||||
|
window.setTimeout(cooldown, 1000);
|
||||||
} else {
|
} else {
|
||||||
remove(qr);
|
remove(qr);
|
||||||
}
|
}
|
||||||
@ -647,7 +663,7 @@
|
|||||||
var _ref2, input;
|
var _ref2, input;
|
||||||
_ref2 = this.nextElementSibling.getAttribute('href').substring(1).split('/');
|
_ref2 = this.nextElementSibling.getAttribute('href').substring(1).split('/');
|
||||||
board = _ref2[0];
|
board = _ref2[0];
|
||||||
nop = _ref2[1];
|
_ = _ref2[1];
|
||||||
id = _ref2[2];
|
id = _ref2[2];
|
||||||
watched[board] = slice(watched[board], id);
|
watched[board] = slice(watched[board], id);
|
||||||
GM_setValue('watched', JSON.stringify(watched));
|
GM_setValue('watched', JSON.stringify(watched));
|
||||||
@ -754,7 +770,7 @@
|
|||||||
onloadComment = function(responseText, a, href) {
|
onloadComment = function(responseText, a, href) {
|
||||||
var _i, _len, _ref2, bq, op, opbq, replies, reply;
|
var _i, _len, _ref2, bq, op, opbq, replies, reply;
|
||||||
_ref2 = href.match(/(\d+)#(\d+)/);
|
_ref2 = href.match(/(\d+)#(\d+)/);
|
||||||
nop = _ref2[0];
|
_ = _ref2[0];
|
||||||
op = _ref2[1];
|
op = _ref2[1];
|
||||||
id = _ref2[2];
|
id = _ref2[2];
|
||||||
_ref2 = parseResponse(responseText);
|
_ref2 = parseResponse(responseText);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user