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 2019/01/20 16:29:04 UTC

[royale-asjs] branch develop updated: Fix minification

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 6831b1a  Fix minification
6831b1a is described below

commit 6831b1a265785b2c5adfcf1064379d5acfbb6a3c
Author: Harbs <ha...@in-tools.com>
AuthorDate: Sun Jan 20 18:28:53 2019 +0200

    Fix minification
---
 .../projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as
index cdfc564..d3bd757 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/utils/Base64JSWrapper.as
@@ -45,7 +45,7 @@ package mx.utils
 		{
 			var base64js:Object = window["base64js"];
 			
-			return base64js.toByteArray(b64Str);
+			return base64js["toByteArray"](b64Str);
 			
 		}