diff --git a/shared/static/scripts/sx-browser.js b/shared/static/scripts/sx-browser.js index 13192c3..71b452e 100644 --- a/shared/static/scripts/sx-browser.js +++ b/shared/static/scripts/sx-browser.js @@ -14,7 +14,7 @@ // ========================================================================= var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } }); - var SX_VERSION = "2026-03-06T21:30:54Z"; + var SX_VERSION = "2026-03-06T21:35:37Z"; function isNil(x) { return x === NIL || x === null || x === undefined; } function isSxTruthy(x) { return x !== false && !isNil(x); } @@ -2357,7 +2357,7 @@ callExpr.push(dictGet(kwargs, k)); } } })(); }; // boot-init - var bootInit = function() { return (logInfo((String("sx-browser ") + String(SX_VERSION))), initCssTracking(), initStyleDict(), processSxScripts(NIL), processPageScripts(), sxHydrateElements(NIL), processElements(NIL)); }; + var bootInit = function() { return (logInfo((String("sx-browser ") + String(SX_VERSION))), initCssTracking(), initStyleDict(), processPageScripts(), processSxScripts(NIL), sxHydrateElements(NIL), processElements(NIL)); }; // ========================================================================= diff --git a/shared/sx/ref/boot.sx b/shared/sx/ref/boot.sx index e2d4bde..64d91b8 100644 --- a/shared/sx/ref/boot.sx +++ b/shared/sx/ref/boot.sx @@ -344,8 +344,8 @@ (log-info (str "sx-browser " SX_VERSION)) (init-css-tracking) (init-style-dict) - (process-sx-scripts nil) (process-page-scripts) + (process-sx-scripts nil) (sx-hydrate-elements nil) (process-elements nil))))