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 8e9995c Fix createJS for refactor of popups
8e9995c is described below
commit 8e9995c8f1a567969710858097fc665c2fea4e07
Author: Carlos Rovira <[email protected]>
AuthorDate: Fri Sep 28 10:56:22 2018 +0200
Fix createJS for refactor of popups
---
.../src/main/royale/org/apache/royale/createjs/core/View.as | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
index 09fce87..b83261a 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
@@ -23,6 +23,7 @@ package org.apache.royale.createjs.core
import org.apache.royale.core.IApplicationView;
import org.apache.royale.core.IPopUpHost;
import org.apache.royale.core.IParent;
+ import org.apache.royale.core.IPopUpHostParent;
import org.apache.royale.core.IMXMLDocument;
import org.apache.royale.core.IStatesImpl;
import org.apache.royale.core.ValuesManager;
@@ -78,7 +79,7 @@ package org.apache.royale.createjs.core
[DefaultProperty("mxmlContent")]
COMPILE::JS
- public class View extends UIBase implements IPopUpHost,
IApplicationView, IContainer
+ public class View extends UIBase implements IPopUpHost,
IApplicationView, IContainer, IPopUpHostParent
{
private var _applicationModel:Object;
@@ -336,10 +337,16 @@ package org.apache.royale.createjs.core
* @playerversion AIR 2.6
* @productversion Royale 0.0
*/
- public function get popUpParent():IParent
+ public function get popUpParent():IPopUpHostParent
{
return this;
}
+ /**
+ */
+ public function get popUpHost():IPopUpHost
+ {
+ return this;
+ }
}
}