Files
openfoodnetwork/app/webpacker/controllers/form_controller.js
David Cook 6ed96bae85 Submit image when selected
This could have been done with a tiny amount of inline JS, but I went this way in case I needed any special logic for UJS. It turns out we don't.. but it still looks a bit cleaner this way.
2024-01-16 13:44:34 +11:00

8 lines
143 B
JavaScript

import { Controller } from "stimulus";
export default class FormController extends Controller {
submit() {
this.element.submit();
}
}