Merge pull request #2994 from ffdixon/minor-fixes

Minor fixes
This commit is contained in:
Fred Dixon 2016-01-30 19:53:38 -05:00
commit 10b1f4eb4b
3 changed files with 4 additions and 2 deletions

View File

@ -110,7 +110,7 @@
url: '/html5client/check'
});
checkRequest.done(function(data) {
if(typeof data.html5clientStatus !== "undefined" && data.html5clientStatus === "running") {
if(typeof data.html5clientStatus !== "undefined" && data.html5clientStatus === "running" && document.getElementById('html5Section') != null) {
document.getElementById('html5Section').style.display='inherit';
}
});
@ -161,7 +161,7 @@
<br/>
<div style="width:50%; margin-left: auto; margin-right: auto; ">
<a href="http://www.adobe.com/go/getflashplayer">
<img src="//www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
<img src="get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<div id="html5Section" style="display:none">
<p style="margin-left:50px;" >OR</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -18,6 +18,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<meta charset="UTF-8">
<title>BigBlueButton Playback</title>
<link rel="stylesheet" href="css/bbb.playback.css">
<script type="text/javascript" src="lib/jquery.min.js"></script>