zeus.ugent.be/content/assets/scripts/gamification.coffee

9 lines
286 B
CoffeeScript
Raw Normal View History

2016-10-03 12:41:36 +00:00
$ ->
$.getJSON 'https://zeus.ugent.be/game/top4/show.json', (data) ->
str = "<ol>"
for x in data
2017-02-08 11:00:34 +00:00
str += "<li><img src=\"#{x.avatar_url}\"> <a href=\"#{x.github_url}\">#{x.github_name}</a> (#{x.score} Z$)</li>"
2016-10-03 12:41:36 +00:00
str += "</ol>"
$('#gamification-coders').html(str)