Compare commits

..

No commits in common. "dcd7428687ba42d6f11a09c6bfc903dcd74d576b" and "65ed6e9de44fe8e18f7c2be7052607c0edccea13" have entirely different histories.

2 changed files with 2 additions and 11 deletions

View file

@ -5,10 +5,7 @@
const pages = getPages();
let ntfyLock = false;
async function sendNtfyMessage() {
if (ntfyLock) return;
ntfyLock = true;
const message = document.getElementById("ntfy-message").value;
if (message.length < 15)
return alert(
@ -24,7 +21,6 @@
},
});
if (resp.ok) alert(`Sent: ${message}`);
ntfyLock = false;
}
function updateNtfyCharCount(_) {
@ -62,7 +58,7 @@
alt={link.name}
/>
{#if link.href}
<a href={link.href} rel="me" target="_blank">
<a href={link.href} target="_blank">
{link.name}: {link.username}
</a>
{:else}
@ -408,7 +404,7 @@
128
</label>
<br />
<button on:click={sendNtfyMessage} style="margin-top: 1rem;" disabled={ntfyLock}> Send </button>
<button on:click={sendNtfyMessage} style="margin-top: 1rem;"> Send </button>
</main>
<style>

View file

@ -409,11 +409,6 @@ input[type="submit"] {
cursor: pointer;
}
button[disabled],
input[type="submit"][disabled] {
opacity: 0.6;
}
input[type="text"] {
padding: 0.5em;