From c21329ac4ef6697c5ef96eb553ac9e633a6d4f59 Mon Sep 17 00:00:00 2001 From: Adhityaa Chandrasekar Date: Sun, 23 Sep 2018 02:32:28 -0400 Subject: [PATCH] commento.js: use a button for upvote and downvote --- frontend/js/commento.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/js/commento.js b/frontend/js/commento.js index 9b1aa3c..98b65a7 100644 --- a/frontend/js/commento.js +++ b/frontend/js/commento.js @@ -604,8 +604,8 @@ var edit = create("button"); var reply = create("button"); var collapse = create("button"); - var upvote = create("div"); - var downvote = create("div"); + var upvote = create("button"); + var downvote = create("button"); var approve = create("button"); var remove = create("button"); var children = commentsRecurse(parentMap, comment.commentHex);