Skip to content

Commit a5dc7ce

Browse files
committed
Remove debug log statement
1 parent b8cb330 commit a5dc7ce

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/js/site/codetools.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@
111111
function onFoldUnfoldButtonClick(preElement) {
112112
const codeElement = preElement.querySelector("code");
113113
const unfolding = !codeElement.classList.contains("unfolded");
114-
console.log("I am " + unfolding);
115114
codeElement.classList.remove(unfolding ? "folding" : "unfolding");
116115
codeElement.classList.add(unfolding ? "unfolding" : "folding");
117116
delay(function () {

0 commit comments

Comments
 (0)