[codex] Improve detector false positive handling (#232)

* Improve detector false positive handling

* Register docs integrity test

* Fix clipped overflow decorative skip
This commit is contained in:
Paul Bakaus
2026-06-09 10:56:32 -07:00
committed by GitHub
parent c169b84f20
commit e3e22007a9
70 changed files with 10042 additions and 1221 deletions
-3
View File
@@ -339,7 +339,6 @@ export function initLiveDemo() {
/** Collapsed page-chat pill on marketing gbars — mirrors live-browser.js expand UX. */
export function initGbarPageChat() {
const EASE = 'cubic-bezier(0.22, 1, 0.36, 1)';
document.querySelectorAll('[data-demo-gbar-chat]').forEach((chat) => {
const input = chat.querySelector('.live-demo-gbar-chat-input');
const hint = chat.querySelector('.live-demo-gbar-chat-hint');
@@ -371,8 +370,6 @@ export function initGbarPageChat() {
}
};
chat.style.transition = `width 0.28s ${EASE}, border-color 0.15s ease`;
input.addEventListener('input', syncVisual);
chat.addEventListener('click', (e) => {