Skip to:
Content

BuddyPress.org

Ticket #3396: ctrl_enter_posting.patch

File ctrl_enter_posting.patch, 1.0 KB (added by slaFFik, 13 years ago)

Top level activity items + blogs comments posting

  • bp-themes/bp-default/_inc/global.js

     
    2727                jq('form#whats-new-form input[type="submit"]').show();
    2828        }
    2929
     30        /**** Blog Comments Posting ********************************************************/
     31
     32        jq('form#commentform textarea[name=comment]').live("keydown", function(e) {
     33                if (e.keyCode == 13 && e.ctrlKey){
     34                        jq('form#commentform input[name=submit]').click();
     35                }
     36        });
     37       
    3038        /**** Activity Posting ********************************************************/
    3139
    3240        /* Textarea focus */
    3341        jq('#whats-new').focus( function(){ jq("#aw-whats-new-submit").fadeIn(300); });
    3442
     43        /* Whats-new textarea ctrl+enter handler */
     44        jq('#whats-new').live("keydown", function(e) {
     45                if (e.keyCode == 13 && e.ctrlKey){
     46                        jq("input#aw-whats-new-submit").click();
     47                }
     48        });
     49       
    3550        /* New posts */
    3651        jq("input#aw-whats-new-submit").click( function() {
    3752                var button = jq(this);