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

9 lines
256 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
str += "<li><a href=\"#{x.github_url}\">#{x.github_name}</a> (#{x.score} Z$)</li>"
str += "</ol>"
$('#gamification-coders').html(str)