diff --git a/js/impress.js b/js/impress.js index 49f15d6..c0c5b95 100644 --- a/js/impress.js +++ b/js/impress.js @@ -2565,10 +2565,10 @@ ( function( document, window ) { 'use strict'; - var notes = window.document.getElementsByClassName("notes") + var notes = window.document.getElementsByClassName('notes'); for (let items in Object.entries(notes).values) { - items.style.display = "none" + items.style.display = 'none'; } // TODO: Move this to src/lib/util.js diff --git a/src/plugins/impressConsole/impressConsole.js b/src/plugins/impressConsole/impressConsole.js index 293c89e..2715244 100644 --- a/src/plugins/impressConsole/impressConsole.js +++ b/src/plugins/impressConsole/impressConsole.js @@ -16,10 +16,10 @@ ( function( document, window ) { 'use strict'; - var notes = window.document.getElementsByClassName("notes") + var notes = window.document.getElementsByClassName('notes'); for (let items in Object.entries(notes).values) { - items.style.display = "none" + items.style.display = 'none'; } // TODO: Move this to src/lib/util.js