From 230fc1203d8dd32d73c23af4446d67956e6a6145 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 2 Jan 2018 09:54:34 +0100 Subject: [PATCH] Disable tabIndex on selection checkboxes --- program/js/list.js | 1 + 1 file changed, 1 insertion(+) diff --git a/program/js/list.js b/program/js/list.js index 91b2a8cfb..fd5f5e0e3 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -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();