We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f4dd8d commit 65d7f46Copy full SHA for 65d7f46
checkessay.js
@@ -70,6 +70,15 @@ function show_check_results(only_unusual = false)
70
`);
71
div_comments_above_char.insertBefore(codeDiv, div_comments_above_char.firstChild);
72
}
73
+ if ( charObj.cInfo.unusuals['blk_others'] == true )
74
+ {
75
+ var blkDiv = htmlStr2dom(`
76
+ <div class="a_comment_above_char" >
77
+ <span class="span_a_comment_above_char" id="blk" >${escapeHtml(charObj.cInfo.blk)}</span>
78
+ </div>
79
+ `);
80
+ div_comments_above_char.insertBefore(blkDiv, div_comments_above_char.firstChild);
81
+ }
82
83
var div_origChar_n_aboveText = div_essayChar.q$(".div_origChar_n_aboveText");
84
var div_origChar = div_essayChar.q$(".div_orig_char");
0 commit comments