rails8-memoapp/app/javascript/controllers/search_controller.js

13 lines
268 B
JavaScript
Raw Normal View History

2025-02-24 22:51:13 +09:00
import { Controller } from "@hotwired/stimulus";
export default class extends Controller {
search() {
if (this.element) {
clearTimeout(this.timeout);
this.timeout = setTimeout(() => {
this.element.requestSubmit();
}, 300);
}
}
}