Skip to content

Commit

Permalink
Fix HTTPS error
Browse files Browse the repository at this point in the history
  • Loading branch information
amrabed committed Apr 24, 2017
1 parent 5523b07 commit a0422e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions research/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,9 @@ function loadPublications(file, id, title) {
.append("img")
.attr("src", function (d) {
if (d.doi != null) {
return "http://api.elsevier.com/content/abstract/citation-count?doi=" +
return "https://api.elsevier.com/content/abstract/citation-count?doi=" +
d.doi + "&httpAccept=image/jpeg&apiKey=ed9196839729f61e0e1ab9cd1ff9f56b";
}
});
});
}
}

0 comments on commit a0422e7

Please sign in to comment.