From 1d9b6f3dcb33e7e5b5a9de635a74e3fb5ccd8ae2 Mon Sep 17 00:00:00 2001 From: Arceliar Date: Mon, 12 Mar 2018 18:49:32 -0500 Subject: [PATCH] Update builds.md --- builds.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/builds.md b/builds.md index e7f8835..08996d4 100644 --- a/builds.md +++ b/builds.md @@ -14,7 +14,12 @@ fetch(url) .then(function (bins) { for (var idx in bins) { var bin = bins[idx] - console.log("" + bin.path + "
"); + var link = document.createElement('a'); + link.appendChild(document.createTextNode(bin.path)); + link.title = bin.path; + link.href = bin.url; + document.body.appendChild(link); + document.body.appendChild(document.createElement('br')); } }) .catch(err => { throw err });