mirror of
https://gitcode.com/gitea/gitea.git
synced 2025-05-22 17:48:23 +08:00
space bar as click
This commit is contained in:
@ -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();
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user