-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoderate.html
74 lines (71 loc) · 2.39 KB
/
moderate.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>Moderate - Live Comments Teleprompter</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/moderate.css" />
<script src="js/moderate-bundle.js"></script>
</head>
<body>
<header>
<div class="preview">
<iframe src="teleprompter.html#slave"></iframe>
</div>
<div class="fullWidth">
<h1><img src="img/F_icon.svg" alt="Facebook Icon" />Live Comments Teleprompter</h1>
<h2 data-content="postTitle"></h2>
<div class="controls">
<div class="buttonGroup">
<span class="buttonGroupLabel">Refresh</span>
<button data-action="refreshTeleprompters">Now</button>
<button data-action="toggleAutoRefresh">Auto</button>
</div>
<div class="buttonGroup">
<span class="buttonGroupLabel">Font Size</span>
<button data-action="zoomUp">+</button>
<button data-action="zoomDown">-</button>
</div>
<div class="buttonGroup">
<span class="buttonGroupLabel">Orientation</span>
<button data-action="flipHorizontal">↔</button>
<button data-action="flipVertical">↕</button>
</div>
</div>
</div>
</header>
<section data-content="comments">
<table>
<thead>
<tr>
<td>
<input type="text" name="name" form="newComment" placeholder="Name" />
</td>
<td>
<input type="text" name="message" form="newComment" placeholder="Comment" />
</td>
<td colspan="2" class="control">
<form name="newComment" id="newComment">
<input type="submit" name="submit" data-priority="0" value="Add"/>
</form>
</td>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
<template id="commentRow">
<tr>
<td data-column="name"></td>
<td data-column="message"></td>
<td class="control">
<button data-action="prioritize">⇡</button>
</td>
<td class="control">
<button data-action="delete">×</button>
</td>
</tr>
</template>
</body>
</html>