RateMyCourse/frontpage/rateables/js/voting.js

12 lines
273 B
JavaScript
Raw Normal View History

$(function() {
var csrftoken = $("#csrf-token input").val();
2018-10-09 19:57:39 +00:00
$(".vote-up").click(function() {
2018-10-09 19:57:39 +00:00
var reviewId = $(this).attr("data-review-id");
// Vote up
});
$(".vote-down").click(function() {
var review = $(this).attr("data-review-id");
// Vote down
});
});