-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewtab.html
More file actions
34 lines (29 loc) · 1.44 KB
/
Copy pathnewtab.html
File metadata and controls
34 lines (29 loc) · 1.44 KB
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
<meta charset="utf-8">
<title>New Tab</title>
<link rel="stylesheet" href="editor.css">
<div id="calbar">
<span id="caltext"></span>
<button id="calgear" title="Calendar settings">⚙</button>
</div>
<button id="hidebtn" title="Hide notes">
<svg id="eyeopen" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z"/><circle cx="12" cy="12" r="3"/></svg>
<svg id="eyeshut" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7-11-7-11-7z"/><circle cx="12" cy="12" r="3"/><line x1="4" y1="4" x2="20" y2="20"/></svg>
</button>
<div id="calpanel" hidden>
<textarea id="calurl" rows="4" placeholder="Paste your Google Calendar secret iCal URLs, one per line"></textarea>
<button id="calsave">Save</button>
<p class="hint">Google Calendar → Settings → each calendar → "Secret address in iCal format". One URL per line. Leave empty to hide.</p>
</div>
<div id="agenda" hidden>
<h2>today</h2>
<ul id="agendalist"></ul>
<h2 id="tmrwhead" hidden>tomorrow</h2>
<ul id="agendalist2"></ul>
<p id="agendanote"></p>
</div>
<div id="wrap">
<textarea id="pad" spellcheck="false" placeholder="- todo"></textarea>
</div>
<script src="editor.js"></script>
<script src="privacy.js"></script>
<script src="cal.js"></script>