mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
space bar as click
This commit is contained in:
parent
675cd997d8
commit
020fb43b77
1 changed files with 1 additions and 1 deletions
|
@ -541,7 +541,7 @@ function initAdmin() {
|
|||
|
||||
function buttonsClickOnEnter() {
|
||||
$('.ui.button').keypress(function(e){
|
||||
if (e.keyCode == 13)
|
||||
if (e.keyCode == 13 || e.keyCode == 32) // enter key or space bar
|
||||
$(this).click();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue