-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
58 lines (58 loc) · 2.52 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="libraries/jquery-ui.min.css" type="text/css" rel="stylesheet">
<link href="libraries/jquery-ui.structure.min.css" type="text/css" rel="stylesheet">
<link href="libraries/jquery-ui.theme.min.css" type="text/css" rel="stylesheet">
<link href="popup.css" type="text/css" rel="stylesheet">
<script async src="https://yastatic.net/share2/share.js"></script>
<script src="libraries/jquery.min.js" type="text/javascript"></script>
<script src="libraries/jquery-ui.min.js" type="text/javascript"></script>
<script src="common_functions.js" type="text/javascript"></script>
<script src="popup.js" type="text/javascript"></script>
</head>
<body>
<div id="headBlock" class="hidden">
<div class="logo"></div>
<a href="options.html" id="settingsButton" target="_blank" title="Settings" tabindex="-1"></a>
<div class="toggle">
<input type="checkbox" id="switchButton">
<label for="switchButton"></label>
</div>
</div>
<div id="wordBlock">
<div class="menuWrapper">
<a href="" id="menuButton" class="openMenu"></a>
</div>
<div class="wordWrapper">
<input id="fromLanguage" type="text" placeholder="Word" value="" maxlength="50" tabindex="1">
<input id="intoLanguage" type="text" placeholder="Translation" value="" maxlength="50" tabindex="2">
<a href="" id="playButton" class="playButton" title="Listen" tabindex="-1"></a>
</div>
<div class="addWrapper">
<a href="" id="addButton" tabindex="-1">Add word</a>
<a href="" id="deleteButton" class="deleteButton" tabindex="-1"></a>
<span id="addedWord" class="word"></span>
<span id="deleteWarning" class="deleteWarning">Delete</span>
</div>
</div>
<div id="searchBlock" class="hidden">
<input id="searchInput" type="search" placeholder="Search word" value="" maxlength="50" tabindex="3">
<span id="searchButton"></span>
</div>
<ul id="wordsBlock" class="hidden">
</ul>
<div class="toTop hidden">
<a href="" id="backToTop">back to top</a>
</div>
<div id="socialBlock" class="hidden">
<div id="shareButtons" class="ya-share2" data-lang="en"
data-services="vkontakte,facebook,odnoklassniki,twitter"
data-url="https://chrome.google.com/webstore/detail/eachword-translator-expan/ndbpgappknhobbikhmjenceoklpaalam"
data-image="https://user-images.githubusercontent.com/11778655/28394421-ac4fff18-6cf5-11e7-8f4c-bfbfb26f2480.png"
tabindex="-1">
</div>
</div>
</body>
</html>