Quote:
Test time! Ok, Chris, you should know this one, then. How do I edit the javascript to allow me to add the canned text to a message instead of it replacing a message in a reply?
|
You guys are going to be kicking yourselves: Changing the code so that the canned text is added to the message instead of replacing the message only requires the addition of ONE CHARACTER to ONE LINE of code.
In the newreply template, find:
PHP Code:
if (number != 0) document.vbform.message.value = cannedtext[number];
Change it to:
PHP Code:
if (number != 0) document.vbform.message.value += cannedtext[number];
Just goes to show you that nine hundred-ninety-nine times out of a thousand, the answer is simpler than we expect it to be...
Now I have a question of my own: Any idea how I can add the canned text drop-down to my newthread.php, so that my users can use their canned text when posting a new thread?