forked from fossasia/bbb-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayback.html
121 lines (104 loc) · 4.97 KB
/
playback.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<!--
BigBlueButton open source conferencing system - http://www.bigbluebutton.org/
Copyright (c) 2012 BigBlueButton Inc. and by respective authors (see below).
This program is free software; you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free Software
Foundation; either version 3.0 of the License, or (at your option) any later
version.
*
BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
-->
<html class="no-js" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loading</title>
<link rel="stylesheet" type="text/css" href="acornmediaplayer/acornmediaplayer.base.css" />
<link rel="stylesheet" type="text/css" href="acornmediaplayer/themes/access/acorn.access.css" />
<link rel="stylesheet" type="text/css" href="acornmediaplayer/themes/bigbluebutton/acorn.bigbluebutton.css" />
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/foundation.css" />
<link rel="stylesheet" type="text/css" href="css/foundation-icons.css" />
<link rel="stylesheet" href="playback.css">
</head>
<body>
<div id="loading">
<img id="load-img" class="loading-img" src="logo.png">
<p id="load-msg">Loading</p>
</div>
<div class="circle" id="cursor"></div>
<div id="playback-content" class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<div id="navbar">
<a class="left-off-canvas-toggle menu-icon" href="#">
<i class="sidebar-icon fi-list"></i>
</a>
<h1 id="recording-title">Recording Playback</h1>
</div>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><label>Slides</label></li>
<div id="thumbnails" role="region" aria-label="Slide thumbnails"></div>
</ul>
</aside>
<a class="exit-off-canvas"></a>
<div id="playback" role="main" class="row small-collapse">
<h2 class="show-for-sr">Presentation Slides</h2>
<div id="main-section" class="small-8 columns">
<div id="presentation-area" role="region" aria-label="Presentation" data-swap>
<div id="slide" role="img" aria-labelledby="slideText"></div>
<div id="slideText" class="show-for-sr" aria-live="polite"></div>
</div>
<div id="copyright"></div>
</div>
<div id="side-section" class="small-4 columns">
<div id="video-area" class="clearfix" role="region" aria-label="Video" title="Click to play or pause the playback" data-swap>
<!--
<video id="webcam">You must use an HTML5 capable browser to view this page.
This playback requires modern browser, please use FF, Safari, Chrome</video>
-->
</div>
<div id="audio-area" role="region" aria-label="Audio">
<!--
<audio id="video">You must use an HTML5 capable browser to view this page.
This playback requires modern browser, please use FF, Safari, Chrome</audio>
-->
</div>
<h2 class="show-for-sr">Chat Messages</h2>
<input type="checkbox" name="exposechat" id="exposechat" value="exposechat" class="show-for-sr" checked="checked" />
<label for="exposechat" class="show-for-sr">Read chat messages</label>
<div id="chat-area">
<div id="chat" aria-live="polite" role="region" aria-label="Chat messages"></div>
</div>
</div>
</div>
</div>
<!--
<div id="accInfo">
<input id="accEnabled" type="checkbox" value="accEnabled" />
<label for="accEnabled">Enable accessibility pauses</label><br/>
<div id="countdown" />
</div>
-->
</div>
<script type="text/javascript" src="lib/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery-ui.min.js"></script>
<script type="text/javascript" src="lib/foundation.min.js"></script>
<script type="text/javascript" src="acornmediaplayer/jquery.acornmediaplayer.js"></script>
<script type="text/javascript" src="lib/bbblogger.js"></script>
<script type="text/javascript" src="lib/writing.js"></script>
<script type="text/javascript" src="playback.js"></script>
<!-- popcorn has to be loaded after playback.js, otherwise the chat won't be displayed -->
<script type="text/javascript" src="lib/popcorn-complete.min.js"></script>
<script type="text/javascript" src="lib/popcorn.chattimeline.js"></script>
<script type="text/javascript" src="lib/pace.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>