Merge pull request #91 from theRTC204/fix-remove-debug-statement

fix: Removed a debug statement left behind
master
Mike Bryant 4 years ago committed by GitHub
commit 8745b42b1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,6 @@ function getContributors() {
jQuery.ajax('https://api.github.com/repos/mikebryant/ac-nh-turnip-prices/contributors', {})
.done(function (data) {
data.forEach((contributor, idx) => {
console.debug('DEBUG:', contributor);
container.append(`<a href="${contributor.html_url}">${contributor.login}</a>`);
if (idx < data.length - 1) {
container.append(', ');

Loading…
Cancel
Save