Rebuild sx-browser.js with named-let fix and render dispatch fix

Fixes the _renderCheck to check _renderMode (prevents SVG tag names
like 'g' from being treated as render expressions outside render context).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-17 17:32:10 +00:00
parent f9e65e1d17
commit ecbe670a6a

View File

@@ -14,7 +14,7 @@
// =========================================================================
var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } });
var SX_VERSION = "2026-03-17T17:08:05Z";
var SX_VERSION = "2026-03-17T17:31:51Z";
function isNil(x) { return x === NIL || x === null || x === undefined; }
function isSxTruthy(x) { return x !== false && !isNil(x); }