-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspanTab.html
73 lines (59 loc) · 2.35 KB
/
spanTab.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
<html>
<head>
<title>Word of the Tab</title>
<meta charset="UTF-8">
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<script src="js/vendors/jquery-3.2.0.min.js"></script>
<script src="js/vendors/featherlight.min.js"></script>
<script src="js/net/net-utils.js"></script>
<script src="js/settings.js"></script>
<script src="js/spanTab.js"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendors/featherlight.min.css">
</head>
<body>
<table cellspacing="0" width="100%" height="100%">
<tr>
<td id="divLeftColor" class="parent">
<div class="half">
<img id="imgLeftFlag" class="child" style="display: none;">
<div class="child"></div>
<div id="divLeft" class="inside">
<b id="bLeft"></b>
<hr class="horizontal-divider">
<img style="display: none;" id="imgLeftLoading" src="images/loading.svg"></img>
<iframe scrolling="no" id="iframeLeftConjugations"></iframe>
<span id="divLeftNoNetwork" style="display: none;">Conjugations are only available when connected to the internet</span>
</div>
</div>
</td>
<td class="vertical-divider"></td>
<td id="divRightColor" class="parent">
<div class="half">
<img id="imgRightFlag" class="child" style="display: none;">
<div class="child"></div>
<div id="divRight" class="inside">
<b id="bRight"></b>
<hr class="horizontal-divider">
<img style="display: none;" id="imgRightLoading" src="images/loading.svg"></img>
<iframe scrolling="no" id="iframeRightConjugations"></iframe>
<span id="divRightNoNetwork" style="display: none;">Conjugations are only available when connected to the internet</span>
</div>
</div>
</td>
</tr>
</table>
<div class="icons">
<img id="imgAbout" class="icon about-icon" data-featherlight="#divAboutModal" src="images/about-icon.png">
<img id="imgSettings" class="icon settings-icon" src="images/settings-icon.png"/>
</div>
<div class="about-modal" id="divAboutModal" >
<h1>Word of the Tab</h1>
<hr>
<h3 id="h3Version"><h3>
<h3>Questions? Comments? Suggestions? <br /> Send me an email at <a href="mailto:mikeyinc1@gmail.com">mikeyinc1@gmail.com</a></h3>
<hr>
Conjugations provided by <a href="http://www.verbix.com/">Verbix</a>
</div>
</body>
</html>