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

yishayw 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 9029464  Apparently IE doesn't use null to set default value.
9029464 is described below

commit 9029464918b0d3dbb746343cd5bb337d77cd2a3c
Author: DESKTOP-RH4S838\Yishay <[email protected]>
AuthorDate: Fri May 15 20:25:07 2020 +0300

    Apparently IE doesn't use null to set default value.
    
    Reference #832
---
 frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
index 9927196..3f3246f 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
@@ -6171,7 +6171,7 @@ COMPILE::JS
             } 
             else 
             {
-                positioner.style.visibility = null;
+                positioner.style.visibility = '';
                 dispatchEvent(new Event('show'));
             }
             dispatchEvent(new Event('visibleChanged'));

Reply via email to