feat: smaller imports and exports (#373)

* feat: smaller imports and exports

* test(prefs): extend tests

* style(clippy)

* style: bubble up error

* style: update some wording
This commit is contained in:
Matthew Esposito 2025-02-06 20:34:12 -05:00 committed by GitHub
parent 7d3160c149
commit 2e95e1fc6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 285 additions and 109 deletions

9
static/copy.js Normal file
View file

@ -0,0 +1,9 @@
async function copy() {
await navigator.clipboard.writeText(document.getElementById('bincode_str').value);
}
async function set_listener() {
document.getElementById('copy').addEventListener('click', copy);
}
window.addEventListener('load', set_listener);

View file

@ -553,14 +553,18 @@ aside {
.subscribe,
.unsubscribe,
.filter,
.unfilter {
.unfilter,
.copy,
.import {
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.subscribe,
.filter {
.filter,
.copy,
.import {
color: var(--foreground);
background-color: var(--accent);
}