MCPcopy
hub / github.com/impress/impress.js / renderHelpDiv

Function renderHelpDiv

js/impress.js:2412–2425  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2410 };
2411
2412 var renderHelpDiv = function() {
2413 var helpDiv = document.getElementById( "impress-help" );
2414 if ( helpDiv ) {
2415 var html = [];
2416 for ( var row in rows ) {
2417 for ( var arrayItem in row ) {
2418 html.push( rows[ row ][ arrayItem ] );
2419 }
2420 }
2421 if ( html ) {
2422 helpDiv.innerHTML = "<table>\n" + html.join( "\n" ) + "</table>\n";
2423 }
2424 }
2425 };
2426
2427 var toggleHelp = function() {
2428 var helpDiv = document.getElementById( "impress-help" );

Callers 1

impress.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected