zeus.ugent.be/content/index.coffee

14 lines
378 B
CoffeeScript
Raw Normal View History

2016-06-29 19:39:51 +00:00
$.getJSON 'https://zeus.ugent.be/game/top4/show.json', (data) ->
2016-06-29 19:38:57 +00:00
$('#top-coder-name').text(data[0].github_name)
2016-06-09 15:57:40 +00:00
$.get 'https://api.github.com/orgs/ZeusWPI/events', (data) ->
for e in data
$('#github-feed ul').append(
$('<li />').append(
$('<img />',
style: 'width: 50px;',
src: e.actor.avatar_url
2016-06-10 10:22:59 +00:00
)
).append e.type
)