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/12/27 09:34:07 UTC

[royale-asjs] branch develop updated: tdj: fix typo in var name

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 029ce1a  tdj: fix typo in var name
029ce1a is described below

commit 029ce1aa968461934d4cbdd093333d7b141d7df4
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Dec 27 10:33:56 2019 +0100

    tdj: fix typo in var name
---
 .../TourDeJewel/src/main/royale/PopUpPlayGround.mxml     | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/examples/royale/TourDeJewel/src/main/royale/PopUpPlayGround.mxml b/examples/royale/TourDeJewel/src/main/royale/PopUpPlayGround.mxml
index 14bb2f9..06b20ec 100644
--- a/examples/royale/TourDeJewel/src/main/royale/PopUpPlayGround.mxml
+++ b/examples/royale/TourDeJewel/src/main/royale/PopUpPlayGround.mxml
@@ -37,22 +37,22 @@ limitations under the License.
 			trace("[closePopUp] ", event.target, popup1.content);
 		}
 
-		private var programaticPopup:PopUp;
-		public function createProgramaticPopup(event:MouseEvent):void
+		private var programmaticPopup:PopUp;
+		public function createprogrammaticPopup(event:MouseEvent):void
 		{
-			if(!programaticPopup)
+			if(!programmaticPopup)
 			{
 				var fe:FormExample = new FormExample();
 				fe.width = 490;
 				fe.height = 392;
 				fe.label = "AS3 Form Instance"
 
-				programaticPopup = new PopUp();
-				programaticPopup.content = fe;
-				addElement(programaticPopup);
+				programmaticPopup = new PopUp();
+				programmaticPopup.content = fe;
+				addElement(programmaticPopup);
 			}
 
-			programaticPopup.open = true; 
+			programmaticPopup.open = true; 
 		}
 		]]>
 	</fx:Script>
@@ -89,7 +89,7 @@ limitations under the License.
 
 				<html:H3 text="Jewel PopUp (Declared in AS3)"/>
 				<j:Button text="Create Programatic Popup" emphasis="primary"
-                   click="createProgramaticPopup(event)"/>
+                   click="createprogrammaticPopup(event)"/>
 			</j:Card>
 		</j:GridCell>
 	</j:Grid>