Skip to content
Snippets Groups Projects
Commit 6fff8c0a authored by Stephen Dame's avatar Stephen Dame
Browse files

flash blue to white screen

parent 155b5ec6
No related branches found
No related tags found
No related merge requests found
......@@ -453,7 +453,7 @@
file="BigBlueButton.html"
height="100%"
width="100%"
bgcolor="grey"
bgcolor="white"
application="BBB"
swf="BigBlueButton"
version-major="10"
......
......@@ -43,7 +43,7 @@
var flashvars = {};
var params = {};
params.quality = "high";
params.bgcolor = "#869ca7";
params.bgcolor = "#FFFFFF";
params.allowfullscreen = "true";
if (ffHangWorkaround()) {
console.log("Applying Firefox Flash hang workaround");
......@@ -74,7 +74,7 @@
var fillContent = function(){
var content = document.getElementById("content");
if (content) {
content.innerHTML = '<object type="application/x-shockwave-flash" id="BigBlueButton" name="BigBlueButton" tabindex="0" data="BigBlueButton.swf?v=VERSION" style="position: relative; top: 0.5px;" width="100%" height="100%" align="middle"><param name="quality" value="high"><param name="bgcolor" value="#869ca7"><param name="allowfullscreen" value="true"><param name="wmode" value="window"><param name="allowscriptaccess" value="true"><param name="seamlesstabbing" value="true"></object>';
content.innerHTML = '<object type="application/x-shockwave-flash" id="BigBlueButton" name="BigBlueButton" tabindex="0" data="BigBlueButton.swf?v=VERSION" style="position: relative; top: 0.5px;" width="100%" height="100%" align="middle"><param name="quality" value="high"><param name="bgcolor" value="#FFFFFF"><param name="allowfullscreen" value="true"><param name="wmode" value="window"><param name="allowscriptaccess" value="true"><param name="seamlesstabbing" value="true"></object>';
}
};
} else {
......
......@@ -23,11 +23,16 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
xmlns:views="*"
pageTitle="BigBlueButton"
layout="absolute"
preinitialize="LogUtil.initLogging(true)"
preinitialize="init()"
preloader="org.bigbluebutton.main.model.BigBlueButtonPreloader">
<mx:Script>
<![CDATA[
import org.bigbluebutton.common.LogUtil;
private function init():void {
LogUtil.initLogging(true);
setStyle('backgroundColor', '0xFFFFFF');
}
]]>
</mx:Script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment