We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8551287 commit c12895eCopy full SHA for c12895e
demo/code-demo/scripts/utils.js
@@ -51,7 +51,7 @@ function LoadLogWindow(divSelector) {
51
52
function SetCode(func) {
53
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>';
+ codeHtml = codeHtml + BodyCodeOfFunction(func) + '</pre><script type="text/javascript" src="syntaxHighlighter/syntaxhighlighter.js"></script>';
55
$("#highlighter").html(codeHtml);
56
57
var runFunc = mapFunc(func);
@@ -79,4 +79,4 @@ function CopyTextArea(textAreaSelector, buttonSelector) {
79
80
function ClearTextArea(textAreaSelector) {
81
$(textAreaSelector).val("");
82
-}
+}
0 commit comments