We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e8bfee1 + 1db53db commit a634d43Copy full SHA for a634d43
1 file changed
ts/a11y/explorer/KeyExplorer.ts
@@ -459,8 +459,10 @@ export class SpeechExplorer
459
*/
460
public FocusOut(_event: FocusEvent) {
461
if (this.current && !this.focusSpeech) {
462
- this.setCurrent(null);
463
- this.Stop();
+ if (!this.document.options.keepRegions) {
+ this.setCurrent(null);
464
+ this.Stop();
465
+ }
466
if (!document.hasFocus()) {
467
this.focusTop();
468
}
0 commit comments