1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-23 16:14:17 -04:00

space bar as click

This commit is contained in:
Unknwon 2015-11-11 18:44:39 -05:00
parent 675cd997d8
commit 020fb43b77

View File

@ -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();
});
}