You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by pu...@apache.org on 2021/07/11 15:27:03 UTC

[royale-asjs] branch develop updated: Change in Event.as

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

pushminakazi 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 c851f67  Change in Event.as
c851f67 is described below

commit c851f679292396db60b36f52feaea93787699322
Author: pashminakazi <pa...@gmail.com>
AuthorDate: Sun Jul 11 08:26:45 2021 -0700

    Change in Event.as
---
 .../Core/src/main/royale/org/apache/royale/events/Event.as     | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as
index 70ac9c1..e776b73 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/Event.as
@@ -57,7 +57,10 @@ package org.apache.royale.events
 		public static const ADDED:String = "added";
 		public static const REMOVED:String = "removed";
 		public static const CLOSE:String = "close";
-		public static const CANCEL:String = "cancel"
+		public static const CANCEL:String = "cancel";
+		public static const CONNECT:String = "connect";
+		public static const REMOVED_FROM_STAGE:String = "removedFromStage";
+		public static const ADDED_TO_STAGE:String = "addedToStage";
 		
 		//--------------------------------------
 		//   Constructor
@@ -170,7 +173,10 @@ package org.apache.royale.events
 		public static const ADDED:String = "added";
 		public static const REMOVED:String = "removed";
 		public static const CLOSE:String = "close";
-		public static const CANCEL:String = "cancel"
+		public static const CANCEL:String = "cancel";
+		public static const CONNECT:String = "connect";
+		public static const REMOVED_FROM_STAGE:String = "removedFromStage";
+		public static const ADDED_TO_STAGE:String = "addedToStage";
 
         public function Event(type:String, bubbles:Boolean = false, cancelable:Boolean = false) {
             super(type);