-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
82 lines (78 loc) · 3.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Up Next for macOS</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.ico">
<meta name="description" content="See and join your meetings from the menu bar." />
<meta name="keywords" content="macos, mac, meetings, menu bar, reminder, calendar, time management, countdown, agenda, zoom, meet, schedule" />
<meta name="author" content="Ellen Li" />
<meta property="og:title" content="Up Next">
<meta property="og:description" content="See and join your meetings from the menu bar.">
<meta property="og:image" content="https://upnextapp.com/assets/[email protected]">
<meta property="og:url" content="https://upnextapp.com">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:site_name" content="Up Next">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css" />
<script>
function toggleDropdown() {
var active = document.getElementById("event-active");
var inactive = document.getElementById("event-inactive");
var dropdown = document.getElementById("dropdown");
if (active.style.display === "block") {
dropdown.style.display = "none";
active.style.display = "none";
inactive.style.display = "block";
}
else {
dropdown.style.display = "block";
active.style.display = "block";
inactive.style.display = "none";
}
}
function closeDropdown() {
// debugger;
var active = document.getElementById("event-active");
var inactive = document.getElementById("event-inactive");
var dropdown = document.getElementById("dropdown");
if (active.style.display === "block") {
dropdown.style.display = "none";
active.style.display = "none";
inactive.style.display = "block";
}
}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-27811032-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-27811032-4');
</script>
</head>
<body>
<main onclick="closeDropdown()">
<section id="container">
<div class="aside"></div>
<div class="main">
<h1>Up Next</h1>
<p>See and join your meetings from the menu bar.</p>
<p>Connects to your calendar and video conferencing apps. Works with Zoom, Google Meet, Cisco Webex, and many more.</p>
<p>Made by <a href="https://ellen.li" target="_blank">Ellen</a>. Download it for free. ✌️</p>
<a href="https://itunes.apple.com/us/app/up-next/id1355117041?ls=1&mt=12" target="_blank"><div id="app-store"></div></a>
<p class="footer"><a href="terms.html">Terms</a> • <a href="privacy.html">Privacy</a> • Learn more on <a href="https://github.com/upnextinc/upnext">GitHub</a>.</p>
</div>
</section>
</main>
<div id="mac">
<a href="https://upnextapp.com"><div id="apple"></div></a>
<div id="event-inactive" onclick="toggleDropdown()" style="display:none;"></div>
<div id="event-active" onclick="toggleDropdown()" style="display:block;"></div>
<div id="utilities"></div>
</div>
<div id="dropdown"></div>
</body>
</html>