diff options
author | braxtonhall | 2022-10-24 04:25:20 +0000 |
---|---|---|
committer | braxtonhall | 2022-10-24 04:25:20 +0000 |
commit | b2e6c29a5c18fb0cd2b53f94c64fd0bce47797a6 (patch) | |
tree | 27450b58335abf1e9af96909712c139705de2bc5 | |
parent | 01f4656a8c394ab1016ef303a72a53d3de3c16f1 (diff) |
Remove silly console log
-rw-r--r-- | index.html | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -82,13 +82,12 @@ const cmpName = (a, b) => a.name < b.name ? -1 : 1; - $(document).ready(async _ => { - const contributors = await getContributors() + $(document).ready( + _ => getContributors() .then(people => people.sort(cmpName)) .then(people => people.map(toPersonNode)) - .then(nodes => $("#contributors").append(...nodes)); - console.log(contributors); - }); + .then(nodes => $("#contributors").append(...nodes)) + ); </script> </body> </html> |