Update stomp.js

This commit is contained in:
Lorenz Hohermuth 2025-01-07 08:40:03 +01:00
parent cfcf968830
commit bf5fbb64c0
1 changed files with 2 additions and 2 deletions

View File

@ -40,9 +40,9 @@ function doc_keyUp(e) {
var startpos; var startpos;
var nodes = document.getElementsByClassName("table-row leaf first")[0].parentNode.children; var nodes = document.getElementsByClassName("table-row first")[0].parentNode.children;
for (let i = 0; i < nodes.length; i++) { for (let i = 0; i < nodes.length; i++) {
if (nodes[i].className.match(/table-row leaf (?:selected select-single )?first/g)) { if (nodes[i].className.match(/table-row (?:selected select-single )?first/g)) {
startpos = i; startpos = i;
break; break;
} }