You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/12/06 10:56:24 UTC

[royale-asjs] branch develop updated: Make nativeEvent accessible in JS

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

harbs 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 2c1160f  Make nativeEvent accessible in JS
2c1160f is described below

commit 2c1160f11f279e4c017c43e18ed7f51730fb00a6
Author: Harbs <ha...@in-tools.com>
AuthorDate: Thu Dec 6 12:56:14 2018 +0200

    Make nativeEvent accessible in JS
---
 .../Core/src/main/royale/org/apache/royale/events/MouseEvent.as        | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/MouseEvent.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/MouseEvent.as
index 2a33632..e34a1ed 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/events/MouseEvent.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/events/MouseEvent.as
@@ -312,8 +312,9 @@ package org.apache.royale.events
 		
 		/**
 		 * @type {MouseEvent}
+		 * @royalesuppresspublicvarwarning
 		 */
-		private var nativeEvent:Object;
+		public var nativeEvent:Object;
 
 		public function wrapEvent(event:goog.events.BrowserEvent):void
         {