Add an accesskey to the submit button of the issue.
チケットの送信ボタンにアクセスキーを追加します。
By setting the accesskey, you can press the submit button with the shortcut key.
アクセスキーを設定することで、ショートカットキーで送信ボタンを押下できるようになります。
In this example, s
is set as the accesskey.
この例では、アクセスキーとしてs
を設定しています。
None
Bottom of issue form
JavaScript
$(function() {
$('#issue-form input[name="commit"]').attr('accesskey', 's');
});