Add bubble images inline without a special form

This commit is contained in:
Jason Zimdars
2024-09-05 19:50:45 -05:00
parent 23248d8447
commit f330afb04c
4 changed files with 46 additions and 6 deletions
@@ -0,0 +1,17 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = [ "cancel" ]
submit() {
this.element.requestSubmit()
}
cancel() {
this.cancelTarget?.click()
}
preventAttachment(event) {
event.preventDefault()
}
}