PDA

View Full Version : Mini Mods - Post Message with Ctrl+Enter


kotkerk
07-28-2010, 10:00 PM
One template to edit showthread_quickreply
Find:

<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]"></textarea>

Replace:

<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="width:100%; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]" onKeyPress="if (event.ctrlKey&&((event.keyCode==10)||(event.keyCode==13))){qr_pre pare_submit(this.form, $vboptions[postminchars]);}"></textarea>

If you want to show message [Post reply (Ctrl+Enter)], you must edit template SHOWTHREAD
Find:
value="$vbphrase[post_quick_reply]"
Replace:
value="$vbphrase[post_quick_reply] (Ctrl+Enter)"

To add this feature to advanced editor, Open template editor_toolbar_on and find:
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="display:block; width:$stylevar[messagewidth]; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]">$newpost[message]</textarea>

Replace:
<textarea name="message" id="{$editorid}_textarea" rows="10" cols="60" style="display:block; width:$stylevar[messagewidth]; height:{$editor_height}px" tabindex="1" dir="$stylevar[textdirection]" onKeyPress="if (event.ctrlKey&&((event.keyCode==10)||(event.keyCode==13))){this.f orm.submit();}">$newpost[message]</textarea>

repeat for editor_toolbar_off

Work ONLY in standart editor, NOT WYSIWYG

Eplexx
11-18-2010, 06:25 AM
Doesn't work in chrome.

EDIT: In chrome it's alt + s