>>16264838,FOR LAGGING REPLY BUTTON- FIX IT HERE: (User JS)
window.fixtimer = 0;
setInterval(function() {
var o = document.getElementsByName('post');
var state = 0;
for(var k in o) {
if (typeof o[k].value == 'undefined') continue;
switch(o[k].value) {
case 'Reply':
state |= 1;
break;
case 'Posting… (100%)':
case 'Updating Thread…':
state |= 2;
}
}
if (window.fixtimer && !(state & 2)) {
console.log('timer disabled');
clearTimeout(window.fixtimer);
window.fixtimer = 0;
}
if (! window.fixtimer && (state & 2)) {
window.fixtimer = setTimeout(function() {
var o = document.getElementsByName('post');
for(var k in o) {
if (typeof o[k].value == 'undefined') continue;
o[k].value = 'Reply';
o[k].disabled = false;
}
},10000);
}
}, 1000);