3
2 Comments

Feature suggestion: ctrl + enter for submiting posts

This is a pretty standard shortcut for sending off posts on most websites for convenience.

  1. 5

    Worked! :))

    So, yeah: Use TamperMonkey on your browser, copy and paste and use the following script I made:

       $('.ember-text-area').keydown(function (e) {
           if (e.ctrlKey && e.keyCode == 13) {
             $(".comment-box__save-button").click();
              }
          });
  2. 1

    Testing the script I wrote for this.