-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 1.89 KB
/
index.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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div class="container-fluid">
<div id='initVideoID' class="input-group">
<div>
<label>VideoID; ex: 5qap5aO4i9A</label>
</div>
<input id='txtVideoID' type="text" class='form-control'/>
<input id='btnSubmit' type="button" onclick="getVideoID()" value='Submit' class="btn btn-default"/>
</div>
</div>
<div>
<ul id='comment' class="list-unstyled">
</ul>
</div>
<div id='err'>
</div>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.js"></script>
<script src="https://cdn2.xsplit.com/xjs/download/xjs.min.js"></script>
<script src="js/SelectAChatExtension.js"></script>
<script id="myTemplate" type="text/x-jquery-tmpl">
<li>
<div style='display:inline-block'>
<img src='${userImage}' style='font-size:50px;' class='img-circle'>
<label class='control-label'>
${userName} <button class='btn btn-default' value='${cId}' onClick='writeCurrent(this)''>
<span class='glyphicon glyphicon-plus'>
</span>
</button>
<button class='btn btn-default' onClick='remove()'>
<span class='glyphicon glyphicon-minus'>
</span>
</button>
</label>
<p>${comment}</p>
</div>
</li>
</script>
</body>
</html>