An actual minimum viable product, maybe? #11

Merged
andrewlalis merged 43 commits from develop into master 2018-10-12 18:19:41 +00:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 7f481afdd8 - Show all commits

View File

@ -193,5 +193,6 @@
<!-- Custom scripts --> <!-- Custom scripts -->
<script src="js/main.js"></script> <script src="js/main.js"></script>
<script src="js/voting.js"></script>
</body> </body>
</html> </html>

View File

@ -0,0 +1,10 @@
$(function() {
$(".vote-up").click(function() {
var review = $(this).attr("data-review-id");
// Vote up
});
$(".vote-down").click(function() {
var review = $(this).attr("data-review-id");
// Vote down
});
});