You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { Controller } from "@hotwired/stimulus"
|
|
import debounce from "debounce";
|
|
|
|
// Connects to data-controller="form"
|
|
export default class extends Controller {
|
|
initialize() {
|
|
this.submit = debounce(this.submit.bind(this), 300)
|
|
}
|
|
|
|
submit() {
|
|
this.element.requestSubmit();
|
|
}
|
|
}
|