Fix space bar shortcut to dselect a radio input

pull/1/head
yflory 5 years ago
parent 65585f6ce8
commit be7b184d97

@ -1007,6 +1007,7 @@ define([
if (e.which === 32) {
e.stopPropagation();
e.preventDefault();
if ($(input).is(':checked')) { return; }
$(input).prop('checked', !$(input).is(':checked'));
$(input).change();
}

Loading…
Cancel
Save