vitorfs / bootcamp

An enterprise social network
trybootcamp.vitorfs.com
MIT License
2.28k stars 997 forks source link

Q&A Votes: downvoting gives JS error #218

Open Vamoss opened 4 years ago

Vamoss commented 4 years ago

The variable vote is not defined when clicking downvote option: https://github.com/vitorfs/bootcamp/blob/master/bootcamp/static/js/qa.js#L69 https://github.com/vitorfs/bootcamp/blob/master/bootcamp/static/js/qa.js#L93

Recommending setting it like:

var vote = $(this).hasClass("up-vote") ? "U" : "D";