MCPcopy Index your code
hub / github.com/tmcw/big / printNotesToConsole

Function printNotesToConsole

lib/big.js:195–207  ·  view source on GitHub ↗

* Given a slide number, if there are notes for that slide, * print them to the console.

(n)

Source from the content-addressed store, hash-verified

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;

Callers 1

goFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected