[object Object]

← back to Nationalrealestate

listings.html: load col-resize.js for parity with markets/brokers

498df4a9382099e7a0566c0e2a175c9daddbb27f · 2026-07-31 11:44:25 -0700 · Steve Abrams

Cody-gate caught listings.html loading crcp-grid.js without col-resize.js.
Verified: listings' list view renders a SINGLE-column table (1 header cell),
which col-resize correctly declines to enhance (nothing to resize) — so there
was no functional resize bug, but loading the script gives parity + future-
proofs if listings ever becomes multi-column. Harmless, 0 errors. yoloforever c2.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit 498df4a9382099e7a0566c0e2a175c9daddbb27f
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Fri Jul 31 11:44:25 2026 -0700

    listings.html: load col-resize.js for parity with markets/brokers
    
    Cody-gate caught listings.html loading crcp-grid.js without col-resize.js.
    Verified: listings' list view renders a SINGLE-column table (1 header cell),
    which col-resize correctly declines to enhance (nothing to resize) — so there
    was no functional resize bug, but loading the script gives parity + future-
    proofs if listings ever becomes multi-column. Harmless, 0 errors. yoloforever c2.
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
 public/listings.html | 1 +
 1 file changed, 1 insertion(+)

diff --git a/public/listings.html b/public/listings.html
index 42627f5..d463b89 100644
--- a/public/listings.html
+++ b/public/listings.html
@@ -71,6 +71,7 @@
 </div>
 
 <script src="/crcp-grid.js"></script>
+<script src="/col-resize.js"></script>
 <script>
 const esc = s => String(s == null ? '' : s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/"/g,'&quot;');
 const money = v => v == null ? '—' : '$' + Number(v).toLocaleString();

← 3dfd37e Fix column resize on markets/brokers grids (adjust column no  ·  back to Nationalrealestate  ·  TK-16: add CENTER_LAT/CENTER_LON to la-county adapter — fill b435d6d →