Skip to content

Commit

Permalink
Fix:add missing semicolon (#2150)
Browse files Browse the repository at this point in the history
'sh_main.js' uses semicolons everywhere except in one line, so add the missing semicolon.
  • Loading branch information
Trott authored and Maledong committed Mar 13, 2019
1 parent 1304555 commit 0ad6893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/legacy/sh_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ function highlight(prefix, suffix, tag) {
for (var j = 0; j < htmlClasses.length; j++) {
var htmlClass = htmlClasses[j].toLowerCase();
if (htmlClass === 'sh_none') {
donthighlight = true
donthighlight = true;
continue;
}
if (htmlClass.substr(0, 3) === 'sh_') {
Expand Down

0 comments on commit 0ad6893

Please sign in to comment.