An actual minimum viable product, maybe? #11
|
@ -3,10 +3,26 @@ $(function() {
|
||||||
|
|
||||||
$(".vote-up").click(function() {
|
$(".vote-up").click(function() {
|
||||||
var reviewId = $(this).attr("data-review-id");
|
var reviewId = $(this).attr("data-review-id");
|
||||||
|
var data = {
|
||||||
|
'csrfmiddlewaretoken': csrftoken,
|
||||||
|
'helpful': true
|
||||||
|
};
|
||||||
// Vote up
|
// Vote up
|
||||||
|
$.post(
|
||||||
|
'/api/postings/reviews/' + reviewId + '/helpful_vote',
|
||||||
|
data
|
||||||
|
);
|
||||||
});
|
});
|
||||||
$(".vote-down").click(function() {
|
$(".vote-down").click(function() {
|
||||||
var review = $(this).attr("data-review-id");
|
var review = $(this).attr("data-review-id");
|
||||||
|
var data = {
|
||||||
|
'csrfmiddlewaretoken': csrftoken,
|
||||||
|
'helpful': false
|
||||||
|
};
|
||||||
// Vote down
|
// Vote down
|
||||||
|
$.post(
|
||||||
|
'/api/postings/reviews/' + reviewId + '/helpful_vote',
|
||||||
|
data
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue