a11y-outline

web extension to navigate document outlines easily
git clone https://git.ce9e.org/a11y-outline.git

commit
ec6cda5405b85f987ae6ca46381ddf81d68bd0bd
parent
ae9bc00e860f60ad8e9f92b57eb8e3143746dd0f
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-07-06 05:39
do not include contents of dialog in results

Diffstat

M outline.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/outline.js b/outline.js

@@ -86,7 +86,7 @@ var renderTree = function(role, dialog) {
   86    86 	dialog.appendChild(ul);
   87    87 
   88    88 	setTimeout(() => {
   89    -1 		var matches = getMatches(role);
   -1    89 		var matches = getMatches(role).filter(el => !dialog.contains(el));
   90    90 		var tree = buildTree(matches);
   91    91 
   92    92 		if (matches.length) {