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 b8cb330 commit a5dc7ceCopy full SHA for a5dc7ce
src/main/js/site/codetools.js
@@ -111,7 +111,6 @@
111
function onFoldUnfoldButtonClick(preElement) {
112
const codeElement = preElement.querySelector("code");
113
const unfolding = !codeElement.classList.contains("unfolded");
114
- console.log("I am " + unfolding);
115
codeElement.classList.remove(unfolding ? "folding" : "unfolding");
116
codeElement.classList.add(unfolding ? "unfolding" : "folding");
117
delay(function () {
0 commit comments