This mod is simple, you set it up so that the comment will be submitted and chat messages will be sent when you hit enter. To add new lines, users can hit Shift + Enter.
At the moment, the script will do the following
- Detect Enter key and "click" the submit / reply button automatically
- Do nothing if the user Shift + Enter
- Do nothing if the user is tagging someone or selecting emoticons
- Do nothing if the user is using mobile devices
- Detect Enter key and "click" the submit / reply button automatically
- Do nothing if the user Shift + Enter
- Do nothing if the user is tagging someone or selecting emoticons
- Do nothing if the user is using mobile devices
To install, put this script on the header file.
Then go to your admin dashboard > Theme Manager > Base Theme, copy out Elements > activities.ctp, activities_chrono.ctp, comment_form.ctp to your theme
In all those files, find this text:
In all those files, find this text:
$this->Form->textarea
add this right after array(
'onkeydown' => 'kd(event, this)',
remember to include the comma as well.
remember to include the comma as well.
Hit save and test
If you have any bugs, please tell me in the comment, thanks
Then go to your theme, and again, click on Elements and the files.
If you don't know how to put the script on the header, you can put the script above the <?php if($this->request->is('ajax'): ?> lines, and then follow the rest of the ins... more