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

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new dbb3e73  BE0013: avoid module automatic load
dbb3e73 is described below

commit dbb3e73a14db44ecf43746234e0aa131e3ab11cb
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu Jun 20 11:13:48 2019 +0200

    BE0013: avoid module automatic load
---
 .../MainJewelApp/src/main/royale/MainJewelApp.mxml                     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/MainJewelApp/src/main/royale/MainJewelApp.mxml
 
b/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/MainJewelApp/src/main/royale/MainJewelApp.mxml
index a152a55..61e7b94 100644
--- 
a/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/MainJewelApp/src/main/royale/MainJewelApp.mxml
+++ 
b/examples/blog/BE0013_Dividing_an_Apache_Royale_application_with_modules/MainJewelApp/src/main/royale/MainJewelApp.mxml
@@ -49,7 +49,8 @@
                 
                 <j:Label html="This example uses Modules to load other 
application parts"/>
 
-                <j:ModuleLoader localId="moduleLoader" modulePath="modules" 
moduleName="JewelModule"/>
+                <j:ModuleLoader localId="moduleLoader" autoLoad="false"
+                                modulePath="modules" moduleName="JewelModule"/>
 
                 <j:Button text="Load a Module" emphasis="primary" 
click="loadModule()"/>
              </j:Card>

Reply via email to