diff --git a/4chan_x.js b/4chan_x.js
index 32866a49e..dc18c7ea8 100644
--- a/4chan_x.js
+++ b/4chan_x.js
@@ -1052,7 +1052,7 @@
return ta.value += text;
},
refresh: function(dialog) {
- var auto, f, submit, _ref;
+ var f, submit;
$('textarea', dialog).value = '';
$('input[name=recaptcha_response_field]', dialog).value = '';
f = $('input[type=file]', dialog).parentNode;
@@ -1060,31 +1060,23 @@
submit = $('input[type=submit]', qr);
submit.value = g.sage ? 60 : 30;
submit.disabled = true;
- window.setTimeout(qr.cooldown, 1000);
- auto = submit.previousSibling.lastChild;
- if (auto.checked) {
- return (_ref = $('input[title=autohide]:checked', qr)) != null ? _ref.click() : void 0;
- }
+ return window.setTimeout(qr.cooldown, 1000);
}
},
cooldown: function() {
- var auto, seconds, submit;
+ var seconds, submit;
submit = $('#qr input[type=submit]');
seconds = parseInt(submit.value);
if (seconds === 0) {
submit.disabled = false;
- submit.value = 'Submit';
- auto = submit.previousSibling.lastChild;
- if (auto.checked) {
- return $('#qr form').submit();
- }
+ return submit.value = 'Submit';
} else {
submit.value = seconds - 1;
return window.setTimeout(qr.cooldown, 1000);
}
},
dialog: function(link) {
- var auto, autobox, clone, dialog, el, html, input, script, submit, xpath, _i, _len, _ref;
+ var clone, dialog, el, html, input, script, xpath, _i, _len, _ref;
html = "
";
dialog = ui.dialog('qr', {
top: '0px',
@@ -1109,16 +1101,6 @@
value: $.x(xpath, link).name
});
$.append(clone, input);
- } else if ($.config('Persistent QR')) {
- submit = $('input[type=submit]', clone);
- auto = $.el('label', {
- textContent: 'Auto'
- });
- autobox = $.el('input', {
- type: 'checkbox'
- });
- $.append(auto, autobox);
- $.before(submit, auto);
}
$.append(dialog, clone);
$.append(d.body, dialog);
diff --git a/script.coffee b/script.coffee
index 8c906fcc8..e406b0518 100644
--- a/script.coffee
+++ b/script.coffee
@@ -790,10 +790,6 @@ qr =
submit.value = if g.sage then 60 else 30
submit.disabled = true
window.setTimeout qr.cooldown, 1000
- auto = submit.previousSibling.lastChild
- if auto.checked
- #unhide the qr so you know it's ready for the next item
- $('input[title=autohide]:checked', qr)?.click()
cooldown: ->
submit = $ '#qr input[type=submit]'
@@ -801,10 +797,6 @@ qr =
if seconds == 0
submit.disabled = false
submit.value = 'Submit'
- auto = submit.previousSibling.lastChild
- if auto.checked
- $('#qr form').submit()
- #submit.click() doesn't work
else
submit.value = seconds - 1
window.setTimeout qr.cooldown, 1000
@@ -830,14 +822,6 @@ qr =
name: 'resto'
value: $.x(xpath, link).name
$.append clone, input
- else if $.config 'Persistent QR'
- submit = $ 'input[type=submit]', clone
- auto = $.el 'label',
- textContent: 'Auto'
- autobox = $.el 'input',
- type: 'checkbox'
- $.append auto, autobox
- $.before submit, auto
$.append dialog, clone
$.append d.body, dialog