First setup for challenge 5

This commit is contained in:
Nanne Baars
2017-04-30 17:05:34 +02:00
parent 459cc613e1
commit 262fbbcf52
29 changed files with 543 additions and 134 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,16 @@
$(document).ready(function () {
getVotings()
})
function login(user) {
$.get("votings/login?user=" + user, function (result, status) {
})
}
function getVotings() {
$.get("votings/", function (result, status) {
})
}