session info permissioning work

This commit is contained in:
Brian Smith 2014-05-27 21:31:39 -04:00
parent 989a2a2b3a
commit 6dc8192516
3 changed files with 5 additions and 0 deletions

View File

@ -72,6 +72,8 @@
$("#spnCommentCount", $scope).html(parseInt($("#spnCommentCount").text()) + 1);
renderComment(comment, context.JK.currentUserId, context.JK.currentUserName,
context.JK.currentUserAvatarUrl, $.timeago(Date.now()), context.JK.currentUserMusician, false);
$("#txtRecordingComment").val('');
});
}
}

View File

@ -16,6 +16,8 @@
.done(function(response) {
renderComment(comment, context.JK.currentUserId, context.JK.currentUserName,
context.JK.currentUserAvatarUrl, $.timeago(Date.now()), false);
$("#txtSessionInfoComment").val('');
});
}
}

View File

@ -27,6 +27,7 @@
$("#spnCommentCount").html(parseInt($("#spnCommentCount").text()) + 1);
renderComment(comment, context.JK.currentUserId, context.JK.currentUserName,
context.JK.currentUserAvatarUrl, $.timeago(Date.now()), context.JK.currentUserMusician, false);
$("#txtSessionComment").val('');
});
}
}