##// END OF EJS Templates
comments: toggle icon will now mark hidden inline comments as visible for easier switching of outdated comments.
marcink -
r2612:9288dd39 default
parent child Browse files
Show More
@@ -598,6 +598,8 b' var CommentsController = function() {'
598 this.toggleLineComments = function(node) {
598 this.toggleLineComments = function(node) {
599 self.toggleComments(node, true);
599 self.toggleComments(node, true);
600 var $node = $(node);
600 var $node = $(node);
601 // mark outdated comments as visible before the toggle;
602 $(node.closest('tr')).find('.comment-outdated').show();
601 $node.closest('tr').toggleClass('hide-line-comments');
603 $node.closest('tr').toggleClass('hide-line-comments');
602 };
604 };
603
605
General Comments 0
You need to be logged in to leave comments. Login now