From e5f1456a19f2c53ffeaa40f90aca536db6d485bf Mon Sep 17 00:00:00 2001 From: Bogdan Abaev Date: Thu, 10 Oct 2024 22:28:40 -0700 Subject: [PATCH] a couple of missed double quotes --- src/common/reader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/reader.js b/src/common/reader.js index 5e03baba..c2e8ec35 100644 --- a/src/common/reader.js +++ b/src/common/reader.js @@ -877,7 +877,7 @@ class Reader { let onFocusAnnotation = (annotation) => { if (!annotation) return; // Announce the current annotation to screen readers - if (annotation.type == "external-link") { + if (annotation.type == 'external-link') { this.setA11yMessage(annotation.url); return; }