139 lines
5.5 KiB
HTML
Executable File
139 lines
5.5 KiB
HTML
Executable File
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
|
<head>
|
|
<title></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<style type="text/css" media="screen">
|
|
html, body, #content { height:100%; }
|
|
body { margin:0; padding:0; overflow:hidden; }
|
|
#altContent { /* style alt content */ }
|
|
.visually-hidden {
|
|
position: absolute !important;
|
|
clip: rect(1px 1px, 1px, 1px);
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
padding: 0 !important;
|
|
border: 0 !important;
|
|
height: 1px !important;
|
|
width: 1px !important;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#deployJavaPlugin {
|
|
display : none;
|
|
}
|
|
</style>
|
|
|
|
<script type="text/javascript" src="swfobject/swfobject.js"></script>
|
|
<script src="lib/deployJava.js?v=VERSION" language="javascript"></script>
|
|
<script type="text/javascript">
|
|
//swfobject.registerObject("BigBlueButton", "11", "expressInstall.swf");
|
|
var flashvars = {};
|
|
var params = {};
|
|
params.quality = "high";
|
|
params.bgcolor = "#869ca7";
|
|
params.allowfullscreen = "true";
|
|
params.wmode = "window";
|
|
params.allowscriptaccess = "true";
|
|
params.seamlesstabbing = "true";
|
|
var attributes = {};
|
|
attributes.id = "BigBlueButton";
|
|
attributes.name = "BigBlueButton";
|
|
attributes.align = "middle";
|
|
attributes.tabIndex = 0;
|
|
swfobject.embedSWF("BigBlueButton.swf?v=VERSION", "altFlash", "100%", "100%", "11.0.0", "expressInstall.swf", flashvars, params, attributes, embedCallback);
|
|
|
|
function embedCallback(e) {
|
|
// Work around pixel alignment bug with Chrome 21 on Mac.
|
|
// See: http://code.google.com/p/bigbluebutton/issues/detail?id=1294
|
|
var objs = $('object');
|
|
objs.each(function(i, o) {
|
|
var o = $(o);
|
|
var top = o.offset().top;
|
|
var left = o.offset().left;
|
|
var roundtop = Math.round(top);
|
|
var roundleft = Math.round(left);
|
|
o.css("position", "relative");
|
|
if (roundtop === top) {
|
|
} else {
|
|
o.css("top", roundtop - top);
|
|
}
|
|
if (roundleft === left) {
|
|
} else {
|
|
o.css("left", roundleft - left);
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
<script src="lib/jquery-1.5.1.min.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bbblogger.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bigbluebutton.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bbb_localization.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bbb_blinker.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bbb_deskshare.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bbb_api_bridge.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/sip.js?v=VERSION" language="javascript"></script>
|
|
<script src="lib/bbb_webrtc_bridge_sip.js?v=VERSION" language="javascript"></script>
|
|
<script>
|
|
window.chatLinkClicked = function(url) {
|
|
window.open(url, '_blank');
|
|
window.focus();
|
|
}
|
|
</script>
|
|
<script type="text/javascript">
|
|
function html5() {
|
|
// no Flash detected on the client
|
|
// use the enter api to detect the meetingid, userid and authToken
|
|
// for the attempted joining of the meeting
|
|
// and reuse them to join via the HTML5 client
|
|
var request = $.ajax({
|
|
dataType: 'json',
|
|
url: '/bigbluebutton/api/enter'
|
|
});
|
|
|
|
request.done(function(data) {
|
|
var authToken, meetingId, userId;
|
|
|
|
meetingId = data.response.meetingID;
|
|
userId = data.response.externUserID;
|
|
authToken = data.response.authToken;
|
|
|
|
if ((meetingId != null) && (userId != null) && (authToken != null)) {
|
|
// redirect to the html5 client with the received info
|
|
// format <IP>/html5client/<meetingId>/<userId>/<authToken>
|
|
document.location.pathname = "/html5client/"+meetingId+"/"+userId+"/"+authToken;
|
|
} else {
|
|
// redirect to the logout URL
|
|
document.location=data.response.logoutUrl;
|
|
}
|
|
});
|
|
|
|
request.fail(function(data, textStatus, errorThrown){
|
|
BBBLog.error("Could not redirect to html5client (Flash not detected)");
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<audio id="remote-media" autoplay="autoplay"></audio>
|
|
</div>
|
|
|
|
<div id="content">
|
|
<div id="altFlash">
|
|
<h2>You need Flash installed and enabled in order to use the Flash client.</h2>
|
|
<br/>
|
|
<div style="width:50%; margin-left: auto; margin-right: auto; ">
|
|
<a href="http://www.adobe.com/go/getflashplayer">
|
|
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
|
|
</a>
|
|
<p style="text-align: left;" >OR</p>
|
|
<button type="button" onclick="html5();"><h3>Launch the HTML5 client instead</h3></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button id="enterFlash" type="button" class="visually-hidden" onclick="startFlashFocus();" value="Click to focus the client"/>
|
|
<div id="notifications" aria-live="polite" role="region" aria-label="Chat Notifications"></div>
|
|
</body>
|
|
</html>
|