Add space between concatenated text nodes in getOnlyTypedText command

This commit is contained in:
mic 2025-04-13 21:27:47 +02:00
parent 6b7609939a
commit 00261ee875

View file

@ -76,7 +76,7 @@ switch (message.command) {
break; break;
} }
} }
t += node.textContent; t += node.textContent + " ";
// Track the first and last nodes for range // Track the first and last nodes for range
if (!firstNode) { if (!firstNode) {