-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
75 lines (66 loc) · 2.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html>
<head>
<!-- Copyright 2016 José Varela -->
<meta name="author" content="José Varela ([email protected])">
<title>Gif It</title>
<link rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="/css/loadSpinner.css">
<link rel="stylesheet" href="/css/icons.css">
</head>
<body>
<div class="tab">
<div class="fullwindow tab-home active-tab">
<header>
<div class="header">
<button class="open-tab" data-tab="history">History</button>
</div>
</header>
<form id="f-search">
<input id="search-term" type="text" name="term" placeholder="Search GIF" autocomplete="off" autofocus>
<button type="submit"><i class="icon-search"></i></button>
</form>
<h2 id="error-message"></h2>
<div class="gifs-wrapper">
</div>
<div class="spinner nodisplay">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
<a name="#loadMore"></a>
</div>
<div class="tab-history hide">
<header>
<div class="header">
<button class="open-tab" data-tab="home">Back</button>
</div>
<div class="subheader">
<button id="clear-history">Remove All</button>
</div>
</header>
<div class="gifs-wrapper">
</div>
</div>
</div>
<textarea id="clipboard" class="hidden"></textarea>
<script id="image-template" type="text/html">
<div class="wrap">
<div class="remove hide">
<button class="btn-remove"><i class="icon-trash"></i></button>
</div>
<div class="image-wrapper w200">
<div class="overlay">
<div class="share">
<i class="icon icon-copy"></i>
<p class="nodisplay message">Copied to clipboard</p>
</div>
</div>
<img src="" class="gif" alt="" width="200">
</div>
</div>
</script>
<script src="vendor/jquery-3.1.0.min.js"></script>
<script src="popup.js"></script>
</body>
</html>