This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch feature/requirejs-less
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/feature/requirejs-less by this 
push:
     new 2bca2d092 TAP5-2810: fixing missing parameter in pageinit call again
2bca2d092 is described below

commit 2bca2d0922c92e0a92c81fec215b05984fe753d0
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Sat Aug 2 14:20:50 2025 -0300

    TAP5-2810: fixing missing parameter in pageinit call again
---
 tapestry-core/src/main/typescript/src/t5/core/pageinit.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tapestry-core/src/main/typescript/src/t5/core/pageinit.ts 
b/tapestry-core/src/main/typescript/src/t5/core/pageinit.ts
index f14cc7a8a..8256e6c73 100644
--- a/tapestry-core/src/main/typescript/src/t5/core/pageinit.ts
+++ b/tapestry-core/src/main/typescript/src/t5/core/pageinit.ts
@@ -338,7 +338,7 @@ export default exports_ = 
_.extend(loadLibrariesAndInitialize, {
     addStylesheets(partial != null ? partial.stylesheets : undefined);
 
     // Make sure all libraries are loaded
-    exports_.loadLibraries(partial != null ? partial.libraries : undefined, 
function() {
+    exports_.loadLibraries(partial != null ? partial.libraries : undefined, 
requireJsEnabled, function() {
 
       // After libraries are loaded, update each zone:
       _(partial != null ? partial.content : undefined).each(function(...args) {
@@ -356,7 +356,7 @@ export default exports_ = 
_.extend(loadLibrariesAndInitialize, {
       callback && callback(response);
 
       // Lastly, perform initializations from the partial page render response.
-      return exports_.initialize(partial != null ? partial.inits : undefined);
+      return exports_.initialize(partial != null ? partial.inits : undefined, 
requireJsEnabled);
     });
 
   }

Reply via email to