Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
This script is intended to function similarly to the quick reply feature on 4chan.
The reply window is resizable, and you can drag it around on screen, and it follows you when you scroll up and down.
It's useful when replying to posts, since you don't have to scroll all the way back down after quoting someone.
You should install it with GreaseMonkey (on Firefox) or TamperMonkey (on Chrome)
// ==UserScript==
// @name Everybody Edits Forums Quick Reply
// @version 1
// @grant none
// @match https://forums.everybodyedits.com/viewtopic.php*
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @require https://code.jquery.com/ui/1.9.2/jquery-ui.js
// ==/UserScript==
window.onload = function () {
$('#quickpost').css('visibility', 'hidden');
$('#quickpost').css('display', 'block');
$('#quickpost').css('position', 'fixed');
$('#quickpost').css('cursor', 'pointer');
$('#quickpost').css('top', '20%');
$('#quickpost').draggable();
new MutationObserver(function() { $('#quickpost').width($('textarea[name*="req_message"]').width()+100); } ).observe($('textarea[name*="req_message"]')[0], {
attributes: true, attributeFilter: [ "style" ]
});
$('textarea[name*="req_message"]').width('512px');
$('#quickpost').width(512 + 100);
$('.postlink.conr a').attr('href', '#');
$('.postlink.conr a').click(function() {
$('#quickpost').css('visibility', 'visible');
});
$('#quickpost h2').append('<span id="closequickpost" style="float: right;"><b>X</b></span>');
$('#closequickpost').click(function() {
$('#quickpost').css('visibility', 'hidden');
});
$('.postquickquote a').click(function() {
$('#quickpost').css('visibility', 'visible');
});
};
*u stinky*
Offline
This feature should be added to the forums directly.
Everybody edits, but some edit more than others
Offline
Offline
this would improve mafia
Offline
Pages: 1
[ Started around 1732682036.5877 - Generated in 0.041 seconds, 12 queries executed - Memory usage: 1.41 MiB (Peak: 1.52 MiB) ]