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 349973e commit 4390c3eCopy full SHA for 4390c3e
javascripts/fill.js
@@ -41,7 +41,9 @@ async function init(path) {
41
path +
42
"/main/javascripts/index.json"
43
)
44
- .then((response) => response.json())
+ .then(function (response) {
45
+ return response.json();
46
+ })
47
.catch(console.error);
48
console.debug("Fetched index");
49
content.push(document.createElement("hr"));
@@ -92,7 +94,9 @@ async function init(path) {
92
94
encodeURIComponent(index[i].name) +
93
95
".js"
96
- .then((response) => response.text())
97
98
+ return response.text();
99
100
101
console.debug("Fetched source code for " + index[i].name);
102
var book = document.createElement("h4");
0 commit comments