We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4390c3e commit ce954c2Copy full SHA for ce954c2
javascripts/fill.js
@@ -55,7 +55,7 @@ async function init(path) {
55
ttoc.textContent = "Examples (" + index.length + ")";
56
var ul = document.createElement("ul");
57
toc.appendChild(ul);
58
- for (let i = 0; i < index.length; i++) {
+ for (var i = 0; i < index.length; i++) {
59
var li = document.createElement("li");
60
ul.appendChild(li);
61
li.innerHTML =
@@ -66,7 +66,7 @@ async function init(path) {
66
"</a>";
67
}
68
var loading = document.getElementById("loading");
69
70
loading.textContent += ".";
71
content.push(document.createElement("hr"));
72
console.debug("Adding " + index[i].name);
0 commit comments