Skip to content

Commit

Permalink
chore: cleanups console log
Browse files Browse the repository at this point in the history
  • Loading branch information
jraleman committed May 11, 2024
1 parent dbc631f commit eb7bd86
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion media/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export function hideSectionById(id, delim) {
element.style.display = "none";
while (true) {
const e = nextElement(element);
console.log(e.nodeName);
if (!e || !e.nodeName || e.nodeName === delim || e.nodeName === 'HR') {
if (e && e.nodeName === delim) {
e.style.display = "none";
Expand Down

0 comments on commit eb7bd86

Please sign in to comment.