Skip to content

Commit

Permalink
SAK-46340 Commons : refresh users who liked list (sakaiproject#9879)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgarciaentornos authored Sep 29, 2021
1 parent 5bf8d44 commit 9944379
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commons/tool/src/webapp/js/commons_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ commons.utils = {
document.getElementById('commons-likes-people-' + postId).removeAttribute('style');
document.getElementById('commons-likes-person-' + postId).setAttribute('style','display:none;');
}
commons.utils.getPostLikerNames(postId);
},
cancelCommentEdit: function (commentId) {

Expand Down Expand Up @@ -345,6 +344,8 @@ commons.utils = {
type: 'POST',
data: postId,
timeout: commons.AJAX_TIMEOUT
}).done(function () {
commons.utils.getPostLikerNames(postId);
});
},
deleteComment: function (postId, commentId, callback) {
Expand Down

0 comments on commit 9944379

Please sign in to comment.