You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2014/10/09 08:17:27 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-34557 - PlugIn vs. Plugin (Aleksey; reporter; Lee Burrows: patch)

Repository: flex-sdk
Updated Branches:
  refs/heads/develop 74dca41e0 -> 6bcc923f6


FLEX-34557 - PlugIn vs. Plugin (Aleksey; reporter; Lee Burrows: patch)

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/6bcc923f
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/6bcc923f
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/6bcc923f

Branch: refs/heads/develop
Commit: 6bcc923f6a53200faf17a2f236fd940c64029f07
Parents: 74dca41
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Thu Oct 9 08:16:49 2014 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Thu Oct 9 08:16:49 2014 +0200

----------------------------------------------------------------------
 frameworks/projects/framework/src/mx/utils/Platform.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6bcc923f/frameworks/projects/framework/src/mx/utils/Platform.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/utils/Platform.as b/frameworks/projects/framework/src/mx/utils/Platform.as
index 6c40408..51e077c 100644
--- a/frameworks/projects/framework/src/mx/utils/Platform.as
+++ b/frameworks/projects/framework/src/mx/utils/Platform.as
@@ -271,7 +271,7 @@ public class Platform
 			_isDesktop = !_isMobile;
 			
 			_isAir = playerType == "Desktop";
-			_isBrowser = (playerType == "Plugin" || playerType == "ActiveX");
+			_isBrowser = (playerType == "PlugIn" || playerType == "ActiveX");
 			
 			_initialized = true;
 		}