From d7b743028dc4cf48aa023d32372739433cf3dc99 Mon Sep 17 00:00:00 2001 From: Alexandre Senges Date: Tue, 15 Aug 2023 10:44:01 +0000 Subject: [PATCH] Remove condition on default notes.open --- speaker-notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speaker-notes.js b/speaker-notes.js index 487488c7..591c4baa 100644 --- a/speaker-notes.js +++ b/speaker-notes.js @@ -49,7 +49,7 @@ break; case "inline-open": popIn.classList.add("hidden"); - notes.open = notes.getAttribute("solution") === null; + notes.open = true; notes.classList.remove("hidden"); break; case "inline-closed":