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/04/17 22:21:58 UTC

[royale-asjs] branch develop updated: Revert "core-HTMLElementWrapper: make getActualDispatcher_ function use positioner instead element"

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 8677a93  Revert "core-HTMLElementWrapper: make getActualDispatcher_ function use positioner instead element"
8677a93 is described below

commit 8677a93c28ef5ff85123071b484429b8b17cd3ad
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Apr 18 00:21:39 2019 +0200

    Revert "core-HTMLElementWrapper: make getActualDispatcher_ function use positioner instead element"
    
    This reverts commit e458f7c083cff64032d6081b4676454af46b5457.
---
 .../Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as
index 54a2d6c..4ebff5a 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as
@@ -261,7 +261,7 @@ package org.apache.royale.core
             var source:Object = this;
             if (ElementEvents.elementEvents[type]) {
                 // mouse and keyboard events also dispatch off the element.
-                source = this.positioner;
+                source = this.element;
             }
             return source;
         }