From 8d4307b1a7979931b718d10b2538332831f12759 Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Tue, 5 May 2026 11:43:43 +0000 Subject: [PATCH] Add b blanking --- frontend.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend.html b/frontend.html index f784a7a..730aef3 100644 --- a/frontend.html +++ b/frontend.html @@ -51,6 +51,7 @@ padding: 10px; } .play-btn:hover { color: rgba(255, 255, 255, 1); transform: scale(1.1); } +/q .hidden { display: none; } @@ -94,6 +95,8 @@ } else if (e.code === 'Minus' || e.key.toLowerCase() === 'k') { var params = getRefreshParams(); if (params && params.delay > 1) window.location.href = buildUrl(params.hash, params.order, params.delay - 1); + } else if (e.key.toLowerCase() === 'b') { + document.getElementById('container').classList.toggle('hidden'); } else if (e.key.toLowerCase() === 'o') { var params = getRefreshParams(); if (params) {