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 281e2fc blog-example-BE0012: fix example. Some child tags prefixes
was now right due to recent compiler fixes
281e2fc is described below
commit 281e2fc5661e356aa173508b746ddee5f197778f
Author: Carlos Rovira <[email protected]>
AuthorDate: Sun Dec 15 18:42:31 2019 +0100
blog-example-BE0012: fix example. Some child tags prefixes was now right
due to recent compiler fixes
---
...Using_external_javascript_libraries_in_Apache_Royale.mxml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git
a/examples/blog/BE0012_Using_external_javascript_libraries_in_Apache_Royale/src/main/royale/BE0012_Using_external_javascript_libraries_in_Apache_Royale.mxml
b/examples/blog/BE0012_Using_external_javascript_libraries_in_Apache_Royale/src/main/royale/BE0012_Using_external_javascript_libraries_in_Apache_Royale.mxml
index 432252f..8f24425 100644
---
a/examples/blog/BE0012_Using_external_javascript_libraries_in_Apache_Royale/src/main/royale/BE0012_Using_external_javascript_libraries_in_Apache_Royale.mxml
+++
b/examples/blog/BE0012_Using_external_javascript_libraries_in_Apache_Royale/src/main/royale/BE0012_Using_external_javascript_libraries_in_Apache_Royale.mxml
@@ -39,25 +39,25 @@
</fx:Script>
<j:beads>
- <js:ApplicationDataBinding />
+ <js:ApplicationDataBinding/>
<js:HTTPService id="codeTextLoader" url="as3code.txt"
complete="code_txt = codeTextLoader.data;"/>
</j:beads>
<j:initialView>
<j:View>
- <js:beads>
+ <j:beads>
<j:HorizontalCenteredLayout/>
- </js:beads>
+ </j:beads>
<j:Card percentWidth="90">
<html:H3 text="Using external Javascript Libraries"/>
- <j:Label html="This example uses hljs library to highligh a
piece of code"/>
+ <j:Label html="This example uses hljs library to highligh a
piece of code"/>
<html:Pre height="300" percentWidth="100"
style="background-color: white">
- <js:beads>
+ <html:beads>
<j:ScrollingViewport/>
- </js:beads>
+ </html:beads>
<html:Code id="sourceCodeMXMLText" text="{code_txt}"/>
</html:Pre>