Skip to content

Commit

Permalink
Fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinnan-Gill committed Dec 23, 2018
1 parent 4766feb commit b631998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/load-assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function makeAjaxCall(url, folder, callback){
callback(resp, folder);
} else if (!url.match(/\.(html)$/)) {
console.log("processed failed trying with linking.html for jekyll")
makeAjaxCall(url + "linking.html", folder, callback);
makeAjaxCall(url + "listing.html", folder, callback);
} else {
console.log("xhr failed");
}
Expand Down

0 comments on commit b631998

Please sign in to comment.