You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2019/07/08 21:27:30 UTC

[royale-asjs] branch develop updated (cde2745 -> cc24c67)

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

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


    from cde2745  Clean up vim files after merge
     new 2bf310a  we don't need bracket access for Element.animate method is already part of the JS API! :)
     new cc24c67  tour-de-jewel: update version in welcome page to 0.9.6 and remove search box for now, since it brings confussion

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/royale/TourDeJewel/src/main/royale/WelcomeSection.mxml   | 8 ++++----
 .../apache/royale/jewel/itemRenderers/TabBarButtonItemRenderer.as | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)


[royale-asjs] 01/02: we don't need bracket access for Element.animate method is already part of the JS API! :)

Posted by ca...@apache.org.
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

commit 2bf310a82f816cdb5073d37d4188c60600763901
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Mon Jul 8 23:07:35 2019 +0200

    we don't need bracket access for Element.animate method is already part of the JS API! :)
---
 .../org/apache/royale/jewel/itemRenderers/TabBarButtonItemRenderer.as   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/itemRenderers/TabBarButtonItemRenderer.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/itemRenderers/TabBarButtonItemRenderer.as
index e4fa6bd..735aa60 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/itemRenderers/TabBarButtonItemRenderer.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/itemRenderers/TabBarButtonItemRenderer.as
@@ -194,7 +194,7 @@ package org.apache.royale.jewel.itemRenderers
 		COMPILE::JS
 		public function animateIndicator(positionDiff:Number, widthDiff:Number, duration:int, easingFunction:String):void
 		{
-			indicator_content["animate"](
+			indicator_content.animate(
 				{ transform: ["translateX(" + positionDiff + "px) scaleX(" + widthDiff + ")", "none"] }
 				, 
 				{


[royale-asjs] 02/02: tour-de-jewel: update version in welcome page to 0.9.6 and remove search box for now, since it brings confussion

Posted by ca...@apache.org.
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

commit cc24c678ed662359ce6d84ae895df906af859280
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Mon Jul 8 23:09:31 2019 +0200

    tour-de-jewel: update version in welcome page to 0.9.6 and remove search box for now, since it brings confussion
---
 examples/royale/TourDeJewel/src/main/royale/WelcomeSection.mxml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/examples/royale/TourDeJewel/src/main/royale/WelcomeSection.mxml b/examples/royale/TourDeJewel/src/main/royale/WelcomeSection.mxml
index cfe29bf..767c863 100644
--- a/examples/royale/TourDeJewel/src/main/royale/WelcomeSection.mxml
+++ b/examples/royale/TourDeJewel/src/main/royale/WelcomeSection.mxml
@@ -46,21 +46,21 @@ limitations under the License.
             </html:beads>
         </html:H1>
 
-        <j:Label width="400" multiline="true" html="Jewel is a themeizable and responsive set of user interface components for Apache Royale to quickly build Front-end Applications with AS3 &amp; MXML.&lt;br>Check &lt;a href='https://royale.apache.org'>https://royale.apache.org&lt;/a>">
+        <j:Label width="400" multiline="true" html="Jewel is a themeable and responsive set of user interface components for Apache Royale to help you quickly build the front end of your applications with ActionScript &amp; MXML.&lt;br>Check &lt;a href='https://royale.apache.org'>https://royale.apache.org&lt;/a>">
             <j:beads>
                 <j:SizeControl size="large"/>
                 <j:TextAlign align="center"/>
             </j:beads>
         </j:Label>
 
-        <j:Label width="400" multiline="true" html="Browser support: Chrome (v.44+), Firefox (v.34+), IE 11 &amp; Edge 15+, Safari (v.11.1+), Opera. Mobile: iOS (v.11.0), Android (v.5.0) &amp; Windows Mobile.&lt;br>&lt;strong>This OS: {OSUtils.getOS() + ' (' + OSUtils.getOSVersion() + ')' }&lt;/strong>">
+        <j:Label width="400" multiline="true" html="Jewel Browser support: Chrome (v.44+), Firefox (v.34+), IE 11 &amp; Edge 15+, Safari (v.11.1+), Opera. Mobile: iOS (v.11.0), Android (v.5.0) &amp; Windows Mobile.&lt;br>&lt;strong>This OS: {OSUtils.getOS() + ' (' + OSUtils.getOSVersion() + ')' }&lt;/strong>">
             <j:beads>
                 <j:SizeControl size="small"/>
                 <j:TextAlign align="center"/>
             </j:beads>
         </j:Label>
 
-        <j:HGroup gap="3">
+        <!-- <j:HGroup gap="3">
             <j:IconTextInput>
                 <j:beads>
                     <j:TextPrompt prompt="Search..."/>
@@ -77,6 +77,6 @@ limitations under the License.
             </j:Button>
         </j:HGroup>
         
-        <html:Span text="(This search box doesn't implements logic at this time)"/>
+        <html:Span text="(This search box doesn't implements logic at this time)"/> -->
     </j:Group>
 </c:ExampleAndSourceCodeTabbedSectionContent>