zeus.ugent.be/content/assets/scripts/gamification.coffee
Eloïse Piret 65d1c50b44 pictures
2017-02-08 12:00:34 +01:00

9 lines
286 B
CoffeeScript

$ ->
$.getJSON 'https://zeus.ugent.be/game/top4/show.json', (data) ->
str = "<ol>"
for x in data
str += "<li><img src=\"#{x.avatar_url}\"> <a href=\"#{x.github_url}\">#{x.github_name}</a> (#{x.score} Z$)</li>"
str += "</ol>"
$('#gamification-coders').html(str)