* Given a slide number, if there are notes for that slide, * print them to the console.
(n)
| 193 | * print them to the console. |
| 194 | */ |
| 195 | function printNotesToConsole(n) { |
| 196 | if (notes[n].length && "group" in console) { |
| 197 | console.group(n); |
| 198 | notes[n].forEach(function(note) { |
| 199 | console.log( |
| 200 | "%c%s", |
| 201 | "padding:5px;font-family:serif;font-size:18px;line-height:150%;", |
| 202 | note |
| 203 | ); |
| 204 | }); |
| 205 | console.groupEnd(); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | function useDataImageAsBackground(slideContainer) { |
| 210 | var slideDiv = slideContainer.firstChild; |