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 2020/09/18 17:24:52 UTC

[royale-asjs] branch develop updated: Update Event.as "DEACTIVATE, ADDED and REMOVED" added

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 e5dc16a  Update Event.as "DEACTIVATE,ADDED and REMOVED" added
e5dc16a is described below

commit e5dc16ae17dc13198f825c12c4ea0068c6e434d5
Author: pashminakazi <42...@users.noreply.github.com>
AuthorDate: Fri Sep 18 22:24:43 2020 +0500

    Update Event.as "DEACTIVATE,ADDED and REMOVED" added
---
 .../Core/src/main/royale/org/apache/royale/events/Event.as         | 7 +++++++
 1 file changed, 7 insertions(+)

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 d146568..fcdb62b 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
@@ -53,6 +53,10 @@ package org.apache.royale.events
 		public static const COMPLETE:String = "complete";
 		public static const SELECT:String = "select";
 		public static const OPEN:String = "open";
+		public static const DEACTIVATE:String = "deactivate";
+		public static const ADDED:String = "added";
+		public static const REMOVED:String = "removed";
+		
 		//--------------------------------------
 		//   Constructor
 		//--------------------------------------
@@ -160,6 +164,9 @@ package org.apache.royale.events
 		public static const COMPLETE:String = "complete";
 		public static const SELECT:String = "select";
 		public static const OPEN:String = "open";
+		public static const DEACTIVATE:String = "deactivate";
+		public static const ADDED:String = "added";
+		public static const REMOVED:String = "removed";
 
         public function Event(type:String, bubbles:Boolean = false, cancelable:Boolean = false) {
             super(type);