allow repeatable actions
This commit is contained in:
parent
5201e65d5c
commit
c4b80e8113
@ -362,13 +362,9 @@ iframeLoad = ->
|
|||||||
recaptchaReload()
|
recaptchaReload()
|
||||||
|
|
||||||
|
|
||||||
keyAct = (e) ->
|
keypress = (e) ->
|
||||||
kc = e.keyCode
|
kc = g.keyCode
|
||||||
#https://developer.mozilla.org/en/DOM/Event/UIEvent/KeyEvent
|
if kc is -1 then return
|
||||||
# [0-9;=A-Z]
|
|
||||||
unless 48 <= kc <= 90
|
|
||||||
return
|
|
||||||
if e.ctrlKey or e.altKey then return
|
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
char = String.fromCharCode kc
|
char = String.fromCharCode kc
|
||||||
hash = location.hash
|
hash = location.hash
|
||||||
@ -426,12 +422,25 @@ keyAct = (e) ->
|
|||||||
GM_openInTab href
|
GM_openInTab href
|
||||||
g.count = 0
|
g.count = 0
|
||||||
|
|
||||||
|
keydown = (e) ->
|
||||||
|
kc = e.keyCode
|
||||||
|
#https://developer.mozilla.org/en/DOM/Event/UIEvent/KeyEvent
|
||||||
|
# [0-9;=A-Z]
|
||||||
|
unless 48 <= kc <= 90
|
||||||
|
g.keyCode = -1
|
||||||
|
else if e.ctrlKey or e.altKey
|
||||||
|
g.keyCode = -1
|
||||||
|
else
|
||||||
|
g.keyCode = kc
|
||||||
|
|
||||||
keyActAdd = ->
|
keyActAdd = ->
|
||||||
if not g.REPLY and getConfig 'Keyboard Actions'
|
if not g.REPLY and getConfig 'Keyboard Actions'
|
||||||
d.addEventListener 'keydown', keyAct, true
|
d.addEventListener 'keydown', keydown, true
|
||||||
|
d.addEventListener 'keypress', keypress, true
|
||||||
|
|
||||||
keyActRem = ->
|
keyActRem = ->
|
||||||
d.removeEventListener 'keydown', keyAct, true
|
d.removeEventListener 'keydown', keydown, true
|
||||||
|
d.removeEventListener 'keypress', keypress, true
|
||||||
|
|
||||||
nodeInserted = (e) ->
|
nodeInserted = (e) ->
|
||||||
target = e.target
|
target = e.target
|
||||||
|
|||||||
30
4chan_x.js
30
4chan_x.js
@ -1,5 +1,5 @@
|
|||||||
(function() {
|
(function() {
|
||||||
var $, $$, AEOS, DAY, _, _i, _len, _ref, _ref2, a, addTo, arr, as, autoWatch, autohide, b, board, callback, clearHidden, closeQR, config, cooldown, cutoff, d, delform, down, editSauce, el, expandComment, expandThread, form, formSubmit, g, getConfig, getTime, hide, hideReply, hideThread, href, html, id, iframe, iframeLoad, inAfter, inBefore, input, inputs, keyAct, keyActAdd, keyActRem, l1, lastChecked, m, n, navbotr, navtopr, nodeInserted, now, omitted, onloadComment, onloadThread, options, optionsClose, parseResponse, pathname, quickReply, recaptcha, recaptchaListener, recaptchaReload, redirect, remove, replace, replyNav, report, show, showReply, showThread, slice, span, stopPropagation, temp, text, textContent, thread, threadF, threads, tn, up, watch, watchX, watcher, watcherUpdate, x;
|
var $, $$, AEOS, DAY, _, _i, _len, _ref, _ref2, a, addTo, arr, as, autoWatch, autohide, b, board, callback, clearHidden, closeQR, config, cooldown, cutoff, d, delform, down, editSauce, el, expandComment, expandThread, form, formSubmit, g, getConfig, getTime, hide, hideReply, hideThread, href, html, id, iframe, iframeLoad, inAfter, inBefore, input, inputs, keyActAdd, keyActRem, keydown, keypress, l1, lastChecked, m, n, navbotr, navtopr, nodeInserted, now, omitted, onloadComment, onloadThread, options, optionsClose, parseResponse, pathname, quickReply, recaptcha, recaptchaListener, recaptchaReload, redirect, remove, replace, replyNav, report, show, showReply, showThread, slice, span, stopPropagation, temp, text, textContent, thread, threadF, threads, tn, up, watch, watchX, watcher, watcherUpdate, x;
|
||||||
var __slice = Array.prototype.slice, __hasProp = Object.prototype.hasOwnProperty;
|
var __slice = Array.prototype.slice, __hasProp = Object.prototype.hasOwnProperty;
|
||||||
config = {
|
config = {
|
||||||
'Thread Hiding': [true, 'Hide entire threads'],
|
'Thread Hiding': [true, 'Hide entire threads'],
|
||||||
@ -446,13 +446,10 @@
|
|||||||
}
|
}
|
||||||
return recaptchaReload();
|
return recaptchaReload();
|
||||||
};
|
};
|
||||||
keyAct = function(e) {
|
keypress = function(e) {
|
||||||
var _i, _len, char, count, hash, href, img, kc, position, qrLink, ta, temp;
|
var _i, _len, char, count, hash, href, img, kc, position, qrLink, ta, temp;
|
||||||
kc = e.keyCode;
|
kc = g.keyCode;
|
||||||
if (!((48 <= kc) && (kc <= 90))) {
|
if (kc === -1) {
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (e.ctrlKey || e.altKey) {
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@ -536,11 +533,26 @@
|
|||||||
}
|
}
|
||||||
return (g.count = 0);
|
return (g.count = 0);
|
||||||
};
|
};
|
||||||
|
keydown = function(e) {
|
||||||
|
var kc;
|
||||||
|
kc = e.keyCode;
|
||||||
|
if (!((48 <= kc) && (kc <= 90))) {
|
||||||
|
return (g.keyCode = -1);
|
||||||
|
} else if (e.ctrlKey || e.altKey) {
|
||||||
|
return (g.keyCode = -1);
|
||||||
|
} else {
|
||||||
|
return (g.keyCode = kc);
|
||||||
|
}
|
||||||
|
};
|
||||||
keyActAdd = function() {
|
keyActAdd = function() {
|
||||||
return !g.REPLY && getConfig('Keyboard Actions') ? d.addEventListener('keydown', keyAct, true) : null;
|
if (!g.REPLY && getConfig('Keyboard Actions')) {
|
||||||
|
d.addEventListener('keydown', keydown, true);
|
||||||
|
return d.addEventListener('keypress', keypress, true);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
keyActRem = function() {
|
keyActRem = function() {
|
||||||
return d.removeEventListener('keydown', keyAct, true);
|
d.removeEventListener('keydown', keydown, true);
|
||||||
|
return d.removeEventListener('keypress', keypress, true);
|
||||||
};
|
};
|
||||||
nodeInserted = function(e) {
|
nodeInserted = function(e) {
|
||||||
var _i, _len, _ref, _result, callback, qr, target;
|
var _i, _len, _ref, _result, callback, qr, target;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user