mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
19 lines
374 B
JavaScript
19 lines
374 B
JavaScript
|
/**
|
||
|
* Submit on change
|
||
|
* Simply submits a parent form when this input is changed.
|
||
|
* @extends {Component}
|
||
|
*/
|
||
|
class SubmitOnChange {
|
||
|
|
||
|
setup() {
|
||
|
this.$el.addEventListener('change', () => {
|
||
|
const form = this.$el.closest('form');
|
||
|
if (form) {
|
||
|
form.submit();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default SubmitOnChange;
|