-
Notifications
You must be signed in to change notification settings - Fork 0
/
park-bench-panel.html
57 lines (46 loc) · 2.57 KB
/
park-bench-panel.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
<html>
<!-- Note must use full closing tags. google app parser will not parse html correctly without them-->
<head>
<title>* Park Bench Panel *</title>
<link rel="stylesheet" type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/start/jquery-ui.css"></link>
<!-- The hangout ref needs to change to this once it moves out of developer sandbox
<script src="//talkgadget.google.com/hangouts/_/api/hangout.js?v=1.2"></script>
-->
<script src="https://hangoutsapi.talkgadget.google.com/hangouts/api/hangout.js?v=1.3" ></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<!--PBP SCRIPT BLOCK START-->
<link rel="stylesheet" type="text/css" href="https://c9.io/neilbmclaughlin/park-bench-panel/workspace/Content/park-bench-panel.css"></link>
<script src="https://c9.io/neilbmclaughlin/park-bench-panel/workspace/hangout-wrapper.js"></script>
<script src="https://c9.io/neilbmclaughlin/park-bench-panel/workspace/park-bench-panel.js"></script>
<script src="https://c9.io/neilbmclaughlin/park-bench-panel/workspace/park-bench-panel-init.js"></script>
<!--PBP SCRIPT BLOCK END-->
</head>
<body>
<div style="width : 100%">
<h1 class="ui-widget-header ui-corner-all">Park Bench Panel</h1>
<div id="participants">
<h3 class="ui-widget-header ui-corner-all">Listeners</h3>
<div class="ui-widget-content ui-corner-all">
<ul id="listenerList"></ul>
</div>
</div>
<div id="waiting">
<h3 class="ui-widget-header ui-corner-all">Waiting to speak</h3>
<div class="ui-widget-content ui-corner-all">
<ul id="waitingList"></ul>
</div>
</div>
<div id="speakers">
<h3 class="ui-widget-header ui-corner-all">Speakers (Limit : 3)</h3>
<div class="ui-widget-content ui-corner-all">
<ul id="speakerList"></ul>
</div>
</div>
<div id="buttons">
<input class="button" type="button" value="I want to talk" id="btnStartTalk" onClick="startTalk()"></input>
<input class="button" type="button" value="I'm done talking" id="btnStopTalk" onClick="stopTalk()"></input>
</div>
</div>
</body>
</html>