We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c9ecc5 commit 93c8680Copy full SHA for 93c8680
1 file changed
js/contributors.js
@@ -1,10 +1,10 @@
1
$(document).ready(function () {
2
- $.get('https://api.github.com/repos/Codeception/Codeception/contributors', '',function(data) {
+ $.get('https://api.github.com/repos/Codeception/Codeception/contributors', '',function(data,jqXHR) {
3
4
if (data === undefined) {
5
data = $.parseJSON(jqXHR.responseText);
6
}
7
-
+
8
$.each(data, function (key, contributor) {
9
var image = "<img src=\"" + contributor.avatar_url + "\" width=\"48\" height=\"48\">";
10
var link = $(document.createElement('a'));
0 commit comments