From 986d607d1ee20e4fb29ac791bd1ecc62ca9204d9 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Thu, 5 Jan 2023 08:06:09 +0100 Subject: [PATCH] Show speaker notes as closed by default This makes it clearer that the notes are extra content. --- speaker-notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speaker-notes.js b/speaker-notes.js index ff92ba57..fe495b93 100644 --- a/speaker-notes.js +++ b/speaker-notes.js @@ -61,7 +61,7 @@ // Get the state of the speaker note window: "inline-open", "inline-closed", // or "popup". function getState() { - return window.localStorage["speakerNotes"] || "inline-open"; + return window.localStorage["speakerNotes"] || "inline-closed"; } // Set the state of the speaker note window. Call applyState as needed