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 e458f7c core-HTMLElementWrapper: make getActualDispatcher_ function
use positioner instead element
e458f7c is described below
commit e458f7c083cff64032d6081b4676454af46b5457
Author: Carlos Rovira <[email protected]>
AuthorDate: Wed Apr 17 23:54:55 2019 +0200
core-HTMLElementWrapper: make getActualDispatcher_ function use positioner
instead element
---
.../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 4ebff5a..54a2d6c 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.element;
+ source = this.positioner;
}
return source;
}