-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (101 loc) · 3.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Image Album Reviewer</title>
<link rel="stylesheet" href="styles/app.css">
<link rel="stylesheet" href="styles/elements.css">
<link rel="stylesheet" href="styles/extras.css">
<!-- Custom Components -->
<link rel="stylesheet" href="components/img-card.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js" type="text/javascript"></script>
<script src="js/config.js" type="text/javascript"></script>
<script src="js/tools.js" type="text/javascript"></script>
<!-- Custom Components -->
<script src="components/img-card.js" type="text/javascript"></script>
</head>
<body class="bg-darkest">
<div class="window tb-top">
<div class="toolbar bg-lighter">
<div>
<button class="bg-blue ic-plus" id='addimg-open'>Add Images</button>
<button class="bg-green ic-publ" id='publ-open'>Comments Summary</button>
</div>
</div>
<div id="gallery" class="gallery"></div>
</div>
<div id="overlay" class="bg-overlay hidden">
<div id="addimg" class="popup addimg bg-lighter hidden">
<div class="window tb-bottom">
<div class="flex-down">
<div class="textbox">
<textarea
id="addimg-block"
placeholder="URL for each image on a separate line"
></textarea>
</div>
</div>
<div class="toolbar">
<div class="toolbar-left">
<button class="bg-green" id='addimg-done'>Add Images</button>
</div>
<div class="toolbar-right">
<button class="bg-red" id='addimg-cancel'>Cancel</button>
</div>
</div>
</div>
</div>
<div id="comment" class="hidden">
<img id="comment-img" draggable=false ondragstart="return false;">
<div class="popup comment bg-lighter">
<div class="window tb-bottom">
<div class="flex-down">
<h1 id="comment-title"></h1>
<div class="textbox">
<textarea
id="comment-block"
placeholder="Write your comment here then click Save"
></textarea>
</div>
</div>
<div class="toolbar">
<div>
<button class="bg-green" id='comment-save'>Save</button>
</div>
<div>
<button class="bg-red" id='comment-cancel'>Cancel</button>
</div>
</div>
</div>
</div>
</div>
<div id="publ" class="popup publ bg-lighter hidden">
<div class="window tb-bottom">
<div class="flex-down">
<div class="switchbox">
<input type="checkbox" id="check-commented">
<label for="check-commented"></label>
<h1>Exclude images without comments</h1>
</div>
<div class="textbox">
<textarea
id="publ-block"
></textarea>
</div>
</div>
<div class="toolbar">
<div>
<button class="bg-blue" id='publ-copy'>
Copy Summary to Clipboard
</button>
</div>
<div class="toolbar-right">
<button class="bg-red" id='publ-back'>Back</button>
</div>
</div>
</div>
</div>
</div>
<script src="js/app.js" type="text/javascript"></script>
</body>
</html>