-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
167 lines (157 loc) · 5.3 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/main.css" />
</head>
<body>
<!-- Example 1 -->
<div id="ex1" class="example">
<h2>Example 1</h2>
<table>
<tr>
<td class="left">
<button id="ex1-button">Click me</button>
</td>
<td id="ex1-display" class="display">
<div id="ex1-messages"></div>
</td>
</tr>
</table>
</div>
<!-- Example 2 -->
<div id="ex2" class="example">
<h2>Example 2</h2>
<table>
<tr>
<td class="left">
<button id="ex2-button">Click me</button>
</td>
<td id="ex2-display" class="display">
<div id="ex2-messages"></div>
</td>
</tr>
</table>
</div>
<!-- Example 3 -->
<div id="ex3" class="example">
<h2>Example 3</h2>
<table>
<tr>
<td class="left">
<button id="ex3-button-a">Button A</button>
<button id="ex3-button-b">Button B</button>
</td>
<td id="ex3-display" class="display">
<div id="ex3-messages"></div>
</td>
</tr>
</table>
</div>
<!-- Example 4 -->
<div id="ex4" class="example">
<h2>Example 4</h2>
<table>
<tr>
<td class="left">
<button id="ex4-button-a">Go!</button>
</td>
<td id="ex4-display" class="display">
<div id="ex4-messages"></div>
</td>
</tr>
</table>
</div>
<!-- Example 5 -->
<div id="ex5" class="example">
<h2>Example 5</h2>
<table>
<tr>
<td class="left">
<button id="ex5-button">Go!</button>
</td>
<td id="ex5-display" class="display">
<div id="ex5-messages"></div>
</td>
</tr>
</table>
</div>
<!-- Example 6 -->
<div id="ex6" class="example">
<h2>Example 6</h2>
<table>
<tr>
<td class="left">
<button id="ex6-button">Go!</button>
</td>
<td id="ex6-display" class="display">
<div class="scrolling">
<div id="ex6-messages"></div>
</div>
</td>
</tr>
</table>
</div>
<!-- Example 7 -->
<div id="ex7" class="example">
<h2>Example 7</h2>
<table>
<tr>
<td class="left">
<button id="ex7-button">Go!</button>
</td>
<td id="ex7-display" class="display">
<div class="scrolling">
<div id="ex7-messages"></div>
</div>
</td>
</tr>
</table>
</div>
<!-- Example 8 -->
<div id="ex8" class="example">
<h2>Example 8</h2>
<table>
<tr>
<td class="left">
<button id="ex8-button">Click me!</button>
</td>
<td id="ex8-display" class="display card">
<div class="scrolling">
<div id="ex8-messages"></div>
</div>
</td>
</tr>
</table>
</div>
<!-- Example 9 -->
<div id="ex9" class="example">
<h2>Example 9</h2>
<table>
<tr>
<td class="left">
<button id="ex9-button-prev">Previous</button>
<button id="ex9-button-next">Next</button>
</td>
<td id="ex9-card" class="display card"></td>
</tr>
</table>
</div>
<!-- Example 10 -->
<div id="ex10" class="example">
<h2>Example 10</h2>
<table>
<tr>
<td class="left">
<button id="ex10-button-start-stop">Start!</button>
<button id="ex10-button-prev">Previous</button>
<button id="ex10-button-next">Next</button>
</td>
<td id="ex10-card" class="display card"></td>
</tr>
</table>
</div>
<!-- Scripts -->
<script src="out/goog/base.js" type="text/javascript"></script>
<script src="webinar.js" type="text/javascript"></script>
<script type="text/javascript">goog.require("webinar.core");</script>
</body>
</html>