|
@@ -2348,8 +2348,8 @@ $(document).ready(function() {
|
|
|
deleteComment(commentId);
|
|
|
});
|
|
|
|
|
|
- // If the user is a collaborator
|
|
|
- if(userIsCollaborator === true) {
|
|
|
+ // If the user is a collaborator or the owner of the canvas
|
|
|
+ if(userIsCollaborator === true || canvasOwner === username) {
|
|
|
// Show the "Resolve Comments" button
|
|
|
$("div#comments-window button#comments-resolve").css("display", "block");
|
|
|
}
|