Disable tabIndex on selection checkboxes

pull/5966/merge
Aleksander Machniak 7 years ago
parent 8bd55ea549
commit 230fc1203d

@ -407,6 +407,7 @@ insert_row: function(row, before)
chbox = document.createElement('input');
chbox.type = 'checkbox';
chbox.tabIndex = -1;
chbox.onchange = function(e) {
self.select_row(row.uid, key || CONTROL_KEY, true);
e.stopPropagation();

Loading…
Cancel
Save