This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
limepot-xyz/public/scripts/ntfy.js

14 lines
No EOL
414 B
JavaScript

// both
function send(message) {
let r = new XMLHttpRequest()
r.open("POST", "https://ntfy.ouroboros.group/beep", true)
r.setRequestHeader("Content-Type", "text/plain")
r.send(message)
}
// send notification
let ntfyInput = document.getElementById("ntfy-input")
function sendNotification() {
if (ntfyInput.value.length <= 0) return
send(ntfyInput.value)
ntfyInput.value = ""
}