13 lines
330 B
JavaScript
13 lines
330 B
JavaScript
|
// app/javascript/controllers/search_controller.js
|
||
|
import { Controller } from "@hotwired/stimulus"
|
||
|
|
||
|
export default class extends Controller {
|
||
|
static targets = ["input"]
|
||
|
|
||
|
submit() {
|
||
|
clearTimeout(this.timeout)
|
||
|
this.timeout = setTimeout(() => {
|
||
|
this.element.requestSubmit()
|
||
|
}, 300)
|
||
|
}
|
||
|
}
|