This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Sam
samuelmaddock.com
did:plc:la24z5ivym7ztiyfxomuyc4e
Do delegates feel natural in JavaScript?
class Installer {
constructor(delegate) {
this.delegate = delegate
}
install() {
if (this.delegate) {
const event = new Event()
this.delegate?.beforeInstall(event)
if (event.defaultPrevented) return
}
}
}
2024-11-26T16:26:52.248Z