Index: lams_central/web/comments/topicview.jsp =================================================================== diff -u -rf65bf8d775c89d19993d672813a4af9f95266267 -r25e1ec09bef9772ea3a274a6ba5127cbc70d4f16 --- lams_central/web/comments/topicview.jsp (.../topicview.jsp) (revision f65bf8d775c89d19993d672813a4af9f95266267) +++ lams_central/web/comments/topicview.jsp (.../topicview.jsp) (revision 25e1ec09bef9772ea3a274a6ba5127cbc70d4f16) @@ -1,4 +1,4 @@ -<%@ page import="org.lamsfoundation.lams.comments.util.CommentConstants"%> +<%@ page import="org.lamsfoundation.lams.comments.CommentConstants"%> @@ -101,9 +101,12 @@ 1); $( '#msglikebutton'+commentUid ).removeClass( 'fa-thumbs-up fa-faded' ).addClass( 'fa-thumbs-o-up' ); $( '#msglikebutton'+commentUid ).prop( 'onclick', null ); + $( '#msgdislikebutton'+commentUid ).css( "display", "none" ); + } + function dislikeEntry(commentUid) { updateLike(commentUid, '?sessionMapID=${sessionMapID}&commentUid='+commentUid, @@ -112,6 +115,7 @@ $( '#msgdislikebutton'+commentUid ).prop( 'onclick', null ); $( '#msglikebutton'+commentUid ).css( "display", "none" ); } +