Skip to content

Commit c12895e

Browse files
authored
Update utils.js
1 parent 8551287 commit c12895e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demo/code-demo/scripts/utils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function LoadLogWindow(divSelector) {
5151

5252
function SetCode(func) {
5353
var codeHtml = '<pre id="txtCode" class="brush: js; gutter: false;">';
54-
codeHtml = codeHtml + BodyCodeOfFunction(func) + '</pre><script type="text/javascript" src="syntaxhighlighter/syntaxhighlighter.js"></script>';
54+
codeHtml = codeHtml + BodyCodeOfFunction(func) + '</pre><script type="text/javascript" src="syntaxHighlighter/syntaxhighlighter.js"></script>';
5555
$("#highlighter").html(codeHtml);
5656

5757
var runFunc = mapFunc(func);
@@ -79,4 +79,4 @@ function CopyTextArea(textAreaSelector, buttonSelector) {
7979

8080
function ClearTextArea(textAreaSelector) {
8181
$(textAreaSelector).val("");
82-
}
82+
}

0 commit comments

Comments
 (0)