Skip to:
Content

BuddyPress.org

Ticket #3396: ctrl_enter_submit.patch

File ctrl_enter_submit.patch, 1.3 KB (added by slaFFik, 13 years ago)

blog comments, what's new activity items, forum replies

  • 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       
     38        /**** Forum posts Posting ********************************************************/
     39
     40        jq('form#forum-topic-form textarea[name=reply_text]').live("keydown", function(e) {
     41                if (e.keyCode == 13 && e.ctrlKey){
     42                        jq('form#forum-topic-form input[name=submit_reply]').click();
     43                }
     44        });
     45       
    3046        /**** Activity Posting ********************************************************/
    3147
    3248        /* Textarea focus */
     
    3652                jq("#aw-whats-new-submit").prop("disabled", false);
    3753        });
    3854
     55        /* Whats-new textarea ctrl+enter handler */
     56        jq('#whats-new').live("keydown", function(e) {
     57                if (e.keyCode == 13 && e.ctrlKey){
     58                        jq("input#aw-whats-new-submit").click();
     59                }
     60        });
     61       
    3962        /* New posts */
    4063        jq("input#aw-whats-new-submit").click( function() {
    4164                var button = jq(this);