Index: lams_central/web/comments/topicview.jsp
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/comments/topicview.jsp,v
diff -u -r1.3 -r1.4
--- lams_central/web/comments/topicview.jsp 16 Dec 2015 11:15:22 -0000 1.3
+++ lams_central/web/comments/topicview.jsp 5 Jan 2016 05:43:46 -0000 1.4
@@ -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" );
}
+