mirror of
https://github.com/kleeja-official/kleeja.git
synced 2025-12-16 04:59:42 +01:00
replace Kleeja team with current github contributors 😇
This commit is contained in:
@@ -24,6 +24,22 @@
|
||||
<script type="text/javascript" src="{STYLE_PATH_ADMIN}js/jquery.waitforimages.js"></script>
|
||||
</IF>
|
||||
|
||||
<IF NAME="go_to==start">
|
||||
<script type="text/javascript">
|
||||
$.ajax({url: "https://api.github.com/repos/awssat/kleeja/contributors",
|
||||
dataType: 'json',
|
||||
success: function (data) {
|
||||
var template = $('#ghTemplate')[0].outerHTML;
|
||||
$.each(data, function(i, item) {
|
||||
$("#gtresults").append(template.replace('%id%', item['id']).replace('%login%', item['login']).replace('ghTemplate',
|
||||
'gt'+item['id']).replace('%avatarUrl%', item['avatar_url']).replace('%contributions%', item['contributions']).replace('%htmlUrl%', item['html_url']));
|
||||
$('#gt'+item['id']).removeAttr('style');
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</IF>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
<!--//
|
||||
|
||||
Reference in New Issue
Block a user