# HG changeset patch # User domruf # Date 2016-10-19 23:46:06 # Node ID b83adf1509d689f271f53c08801f10eac7eaa265 # Parent 1174b9f0afc462959a81014a5cf5650eb3ac6928 comments: warn/highlight the fact that this comment is outside the context diff --git a/kallithea/public/js/base.js b/kallithea/public/js/base.js --- a/kallithea/public/js/base.js +++ b/kallithea/public/js/base.js @@ -584,7 +584,7 @@ function move_comments($anchorcomments) _comment_div_append_form($comment_div, f_path, line_no); } } else { - $anchorcomment.before("Comment to {0} line {1} which is outside the diff context:".format(f_path || '?', line_no || '?')); + $anchorcomment.before("Comment to {0} line {1} which is outside the diff context:".format(f_path || '?', line_no || '?')); } }); linkInlineComments($('.firstlink'), $('.comment:first-child'));