From 0a8b08ebec8a3dcda1ed5e07c75a628f86240605 Mon Sep 17 00:00:00 2001 From: Nicholas Small Date: Sun, 4 Jan 2009 14:40:14 +0800 Subject: [PATCH] Fix for flash view transparency Signed-off-by: 280north --- AppKit/CPFlashView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPFlashView.j b/AppKit/CPFlashView.j index f1cfa724b..1df332902 100644 --- a/AppKit/CPFlashView.j +++ b/AppKit/CPFlashView.j @@ -61,7 +61,7 @@ _DOMEmbedElement = document.createElement("embed"); _DOMEmbedElement.type = "application/x-shockwave-flash"; - _DOMEmbedElement.wmode = "transparent"; + _DOMEmbedElement.setAttribute("wmode", "transparent"); _DOMEmbedElement.width = "100%"; _DOMEmbedElement.height = "100%";