You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2015/10/28 13:31:54 UTC

svn commit: r1711000 - in /openmeetings: branches/3.0.x/src/web/java/org/apache/openmeetings/web/room/swf-functions.js trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/swf-functions.js

Author: solomax
Date: Wed Oct 28 12:31:53 2015
New Revision: 1711000

URL: http://svn.apache.org/viewvc?rev=1711000&view=rev
Log:
SWF wmmode is changed to 'opaque' to enable jquery-ui dialogs

Modified:
    openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/room/swf-functions.js
    openmeetings/trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/swf-functions.js

Modified: openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/room/swf-functions.js
URL: http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/room/swf-functions.js?rev=1711000&r1=1710999&r2=1711000&view=diff
==============================================================================
--- openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/room/swf-functions.js (original)
+++ openmeetings/branches/3.0.x/src/web/java/org/apache/openmeetings/web/room/swf-functions.js Wed Oct 28 12:31:53 2015
@@ -34,7 +34,7 @@ function initSwf(swfurl) {
 	$('div[id="contents"], div[id="contents"] > div').css('height', '100%');
 	var embed = $('<embed>').attr('quality', 'high').attr('bgcolor', options.bgcolor)
 		.attr('src', "public/" + options.url)
-		.attr('wmode', 'window').attr('allowfullscreen', true)
+		.attr('wmode', 'opaque').attr('allowfullscreen', true)
 		.attr('width', options.width).attr('height', options.height)
 		.attr('id', 'lzapp').attr('name', 'lzapp')
 		.attr('flashvars', escape($.param(general)))

Modified: openmeetings/trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/swf-functions.js
URL: http://svn.apache.org/viewvc/openmeetings/trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/swf-functions.js?rev=1711000&r1=1710999&r2=1711000&view=diff
==============================================================================
--- openmeetings/trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/swf-functions.js (original)
+++ openmeetings/trunk/singlewebapp/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/swf-functions.js Wed Oct 28 12:31:53 2015
@@ -31,7 +31,7 @@ function initSwf(swfurl) {
 	$('div[id="contents"], div[id="contents"] > div').css('height', '100%');
 	var embed = $('<embed>').attr('quality', 'high').attr('bgcolor', options.bgcolor)
 		.attr('src', "public/" + options.url)
-		.attr('wmode', 'window').attr('allowfullscreen', true)
+		.attr('wmode', 'opaque').attr('allowfullscreen', true)
 		.attr('width', options.width).attr('height', options.height)
 		.attr('id', 'lzapp').attr('name', 'lzapp')
 		.attr('flashvars', escape($.param(general)))