chore: remove console.log debug statements from body.js

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
giles
2026-02-10 11:51:30 +00:00
parent a1e11c10d4
commit 7ba0f349ec

View File

@@ -681,13 +681,9 @@ document.body.addEventListener("htmx:responseError", function (event) {
document.addEventListener('toggle', function (event) {
const details = event.target;
console.log('toggle fired on', details.tagName, 'open=', details.open);
// Only act on <details> elements that were just opened
if (details.tagName !== 'DETAILS' || !details.open) return;
console.log('details opened closing children');
// Close any child <details> that are open
details.querySelectorAll('details[open]').forEach(function (child) {
if (child !== details) {
@@ -824,19 +820,3 @@ document.body.addEventListener('htmx:beforeSwap', function (event) {
});
document.body.addEventListener('htmx:beforeSwap', function(evt) {
console.log('HTMX beforeSwap:', {
hasSearch: !!document.getElementById('search-desktop'),
target: evt.detail.target,
requestURL: evt.detail.xhr?.responseURL,
swapStyle: evt.detail.swapStyle,
serverResponse: evt.detail.serverResponse.substring(0, 200) + '...'
});
});
document.body.addEventListener('htmx:afterSwap', function(evt) {
console.log('HTMX afterSwap:', {
target: evt.detail.target,
hasSearch: !!document.getElementById('search-desktop')
});
});